diff --git a/docs/examples/101/cyclecloud/sub.bicep b/docs/examples/101/cyclecloud/sub.bicep index b7c9bbdb6c5..5dbdc2b12d2 100644 --- a/docs/examples/101/cyclecloud/sub.bicep +++ b/docs/examples/101/cyclecloud/sub.bicep @@ -1,3 +1,5 @@ +targetScope = 'subscription' + resource rg 'Microsoft.Resources/resourceGroups@2019-05-01' = { name: 'rg-bicep' location: 'eastus' diff --git a/docs/examples/101/cyclecloud/sub.json b/docs/examples/101/cyclecloud/sub.json index e4b47dcbdec..47c0295ae6d 100644 --- a/docs/examples/101/cyclecloud/sub.json +++ b/docs/examples/101/cyclecloud/sub.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#", "contentVersion": "1.0.0.0", "functions": [], "resources": [ diff --git a/docs/examples/201/anchored-proximity-placement-group/sub.bicep b/docs/examples/201/anchored-proximity-placement-group/sub.bicep index c900661ff13..03ee97926b9 100644 --- a/docs/examples/201/anchored-proximity-placement-group/sub.bicep +++ b/docs/examples/201/anchored-proximity-placement-group/sub.bicep @@ -1,3 +1,5 @@ +targetScope = 'subscription' + resource rg 'Microsoft.Resources/resourceGroups@2019-05-01' = { name: 'rg-bicep' location: 'uksouth' diff --git a/docs/examples/201/anchored-proximity-placement-group/sub.json b/docs/examples/201/anchored-proximity-placement-group/sub.json index 1f0a8921632..96567f7318b 100644 --- a/docs/examples/201/anchored-proximity-placement-group/sub.json +++ b/docs/examples/201/anchored-proximity-placement-group/sub.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#", "contentVersion": "1.0.0.0", "functions": [], "resources": [ diff --git a/docs/examples/201/cyclecloud/sub.bicep b/docs/examples/201/cyclecloud/sub.bicep index c900661ff13..03ee97926b9 100644 --- a/docs/examples/201/cyclecloud/sub.bicep +++ b/docs/examples/201/cyclecloud/sub.bicep @@ -1,3 +1,5 @@ +targetScope = 'subscription' + resource rg 'Microsoft.Resources/resourceGroups@2019-05-01' = { name: 'rg-bicep' location: 'uksouth' diff --git a/docs/examples/201/cyclecloud/sub.json b/docs/examples/201/cyclecloud/sub.json index 1f0a8921632..96567f7318b 100644 --- a/docs/examples/201/cyclecloud/sub.json +++ b/docs/examples/201/cyclecloud/sub.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#", "contentVersion": "1.0.0.0", "functions": [], "resources": [ diff --git a/docs/examples/201/policy-with-initiative-definition-and-assignment/main.bicep b/docs/examples/201/policy-with-initiative-definition-and-assignment/main.bicep index 91f20383acf..26fa9ff3b89 100644 --- a/docs/examples/201/policy-with-initiative-definition-and-assignment/main.bicep +++ b/docs/examples/201/policy-with-initiative-definition-and-assignment/main.bicep @@ -1,3 +1,5 @@ +targetScope = 'subscription' + param listOfAllowedLocations array = [ 'eastus' 'eastus2' diff --git a/docs/examples/201/policy-with-initiative-definition-and-assignment/main.json b/docs/examples/201/policy-with-initiative-definition-and-assignment/main.json index 6a046537886..a0ac9db2ae0 100644 --- a/docs/examples/201/policy-with-initiative-definition-and-assignment/main.json +++ b/docs/examples/201/policy-with-initiative-definition-and-assignment/main.json @@ -1,5 +1,5 @@ { - "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "listOfAllowedLocations": { @@ -95,7 +95,7 @@ "properties": { "scope": "[subscription().id]", "enforcementMode": "Default", - "policyDefinitionId": "[resourceId('Microsoft.Authorization/policySetDefinitions', variables('initiativeDefinitionName'))]", + "policyDefinitionId": "[subscriptionResourceId('Microsoft.Authorization/policySetDefinitions', variables('initiativeDefinitionName'))]", "parameters": { "listOfAllowedLocations": { "value": "[parameters('listOfAllowedLocations')]" @@ -106,7 +106,7 @@ } }, "dependsOn": [ - "[resourceId('Microsoft.Authorization/policySetDefinitions', variables('initiativeDefinitionName'))]" + "[subscriptionResourceId('Microsoft.Authorization/policySetDefinitions', variables('initiativeDefinitionName'))]" ] } ] diff --git a/src/Bicep.Core.Samples/Files/Completions/resourceTypes.json b/src/Bicep.Core.Samples/Files/Completions/resourceTypes.json index 3062730b9ad..a295e9b3d2e 100644 --- a/src/Bicep.Core.Samples/Files/Completions/resourceTypes.json +++ b/src/Bicep.Core.Samples/Files/Completions/resourceTypes.json @@ -50,6 +50,23 @@ "newText": "'Microsoft.AAD/domainServices@2020-01-01'" } }, + { + "label": "'Microsoft.AVS/privateClouds/addons@2020-07-17-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.AVS` \nType: `privateClouds/addons` \nAPI Version: `2020-07-17-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "0000015c", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.AVS/privateClouds/addons@2020-07-17-preview'" + } + }, { "label": "'Microsoft.AVS/privateClouds/authorizations@2020-03-20'", "kind": "class", @@ -59,7 +76,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000016a", + "sortText": "0000015e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -76,7 +93,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000169", + "sortText": "0000015d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -93,7 +110,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000016c", + "sortText": "00000160", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -110,7 +127,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000016b", + "sortText": "0000015f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -127,7 +144,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000016d", + "sortText": "00000161", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -144,7 +161,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000016f", + "sortText": "00000163", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -161,7 +178,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000016e", + "sortText": "00000162", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -178,7 +195,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000170", + "sortText": "00000164", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -195,7 +212,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000171", + "sortText": "00000165", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -212,7 +229,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000172", + "sortText": "00000166", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -229,7 +246,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000173", + "sortText": "00000167", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -246,7 +263,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000174", + "sortText": "00000168", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -263,7 +280,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000175", + "sortText": "00000169", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -280,7 +297,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000168", + "sortText": "0000015b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -297,7 +314,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000167", + "sortText": "0000015a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -348,7 +365,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000008", + "sortText": "00000007", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -365,7 +382,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000000c", + "sortText": "0000000b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -382,7 +399,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000000b", + "sortText": "0000000a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -399,7 +416,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000000a", + "sortText": "00000009", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -416,7 +433,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000009", + "sortText": "00000008", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -433,7 +450,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000000d", + "sortText": "0000000c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -450,7 +467,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000012", + "sortText": "00000011", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -467,7 +484,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000011", + "sortText": "00000010", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -484,7 +501,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000010", + "sortText": "0000000f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -501,7 +518,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000001e", + "sortText": "0000001d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -518,7 +535,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000001d", + "sortText": "0000001c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -535,7 +552,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000001c", + "sortText": "0000001b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -552,7 +569,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000073", + "sortText": "00000072", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -569,7 +586,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000072", + "sortText": "00000071", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -586,7 +603,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000071", + "sortText": "00000070", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -603,7 +620,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000070", + "sortText": "0000006f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -620,7 +637,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000002e", + "sortText": "0000002d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -637,7 +654,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000002d", + "sortText": "0000002c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -654,7 +671,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000002c", + "sortText": "0000002b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -671,7 +688,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000002b", + "sortText": "0000002a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -688,7 +705,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000002a", + "sortText": "00000029", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -705,7 +722,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000029", + "sortText": "00000028", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -722,7 +739,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000028", + "sortText": "00000027", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -739,7 +756,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000003c", + "sortText": "0000003b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -756,7 +773,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000003b", + "sortText": "0000003a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -773,7 +790,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000003a", + "sortText": "00000039", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -790,7 +807,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000039", + "sortText": "00000038", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -807,7 +824,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000038", + "sortText": "00000037", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -824,7 +841,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000037", + "sortText": "00000036", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -841,7 +858,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000036", + "sortText": "00000035", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -858,7 +875,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000043", + "sortText": "00000042", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -875,7 +892,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000042", + "sortText": "00000041", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -892,7 +909,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000041", + "sortText": "00000040", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -909,7 +926,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000040", + "sortText": "0000003f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -926,7 +943,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000003f", + "sortText": "0000003e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -943,7 +960,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000003e", + "sortText": "0000003d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -960,7 +977,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000003d", + "sortText": "0000003c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -977,7 +994,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000035", + "sortText": "00000034", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -994,7 +1011,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000034", + "sortText": "00000033", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1011,7 +1028,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000033", + "sortText": "00000032", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1028,7 +1045,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000032", + "sortText": "00000031", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1045,7 +1062,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000031", + "sortText": "00000030", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1062,7 +1079,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000030", + "sortText": "0000002f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1079,7 +1096,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000002f", + "sortText": "0000002e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1096,7 +1113,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000053", + "sortText": "00000052", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1113,7 +1130,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000052", + "sortText": "00000051", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1130,7 +1147,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000051", + "sortText": "00000050", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1147,7 +1164,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000050", + "sortText": "0000004f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1164,7 +1181,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000004f", + "sortText": "0000004e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1181,7 +1198,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000004e", + "sortText": "0000004d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1198,7 +1215,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000004d", + "sortText": "0000004c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1215,7 +1232,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000004c", + "sortText": "0000004b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1232,7 +1249,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000004b", + "sortText": "0000004a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1249,7 +1266,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000004a", + "sortText": "00000049", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1266,7 +1283,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000049", + "sortText": "00000048", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1283,7 +1300,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000048", + "sortText": "00000047", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1300,7 +1317,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000047", + "sortText": "00000046", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1317,7 +1334,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000046", + "sortText": "00000045", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1334,7 +1351,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000045", + "sortText": "00000044", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1351,7 +1368,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000044", + "sortText": "00000043", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1368,7 +1385,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000005a", + "sortText": "00000059", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1385,7 +1402,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000059", + "sortText": "00000058", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1402,7 +1419,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000058", + "sortText": "00000057", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1419,7 +1436,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000057", + "sortText": "00000056", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1436,7 +1453,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000056", + "sortText": "00000055", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1453,7 +1470,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000055", + "sortText": "00000054", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1470,7 +1487,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000054", + "sortText": "00000053", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1487,7 +1504,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000061", + "sortText": "00000060", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1504,7 +1521,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000060", + "sortText": "0000005f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1521,7 +1538,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000005f", + "sortText": "0000005e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1538,7 +1555,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000005e", + "sortText": "0000005d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1555,7 +1572,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000005d", + "sortText": "0000005c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1572,7 +1589,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000005c", + "sortText": "0000005b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1589,7 +1606,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000005b", + "sortText": "0000005a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1606,7 +1623,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000068", + "sortText": "00000067", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1623,7 +1640,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000067", + "sortText": "00000066", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1640,7 +1657,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000066", + "sortText": "00000065", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1657,7 +1674,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000065", + "sortText": "00000064", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1674,7 +1691,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000064", + "sortText": "00000063", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1691,7 +1708,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000063", + "sortText": "00000062", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1708,7 +1725,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000062", + "sortText": "00000061", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1725,7 +1742,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000006f", + "sortText": "0000006e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1742,7 +1759,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000006e", + "sortText": "0000006d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1759,7 +1776,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000006d", + "sortText": "0000006c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1776,7 +1793,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000006c", + "sortText": "0000006b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1793,7 +1810,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000006b", + "sortText": "0000006a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1810,7 +1827,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000006a", + "sortText": "00000069", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1827,7 +1844,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000069", + "sortText": "00000068", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1844,7 +1861,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000027", + "sortText": "00000026", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1861,7 +1878,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000026", + "sortText": "00000025", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1878,7 +1895,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000025", + "sortText": "00000024", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1895,7 +1912,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000024", + "sortText": "00000023", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1912,7 +1929,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000023", + "sortText": "00000022", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1929,7 +1946,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000022", + "sortText": "00000021", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1946,7 +1963,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000021", + "sortText": "00000020", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1963,7 +1980,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000020", + "sortText": "0000001f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1980,7 +1997,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000001f", + "sortText": "0000001e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -1997,7 +2014,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000007c", + "sortText": "0000007b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2014,7 +2031,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000007b", + "sortText": "0000007a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2031,7 +2048,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000007a", + "sortText": "00000079", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2048,7 +2065,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000079", + "sortText": "00000078", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2065,7 +2082,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000078", + "sortText": "00000077", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2082,7 +2099,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000077", + "sortText": "00000076", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2099,7 +2116,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000076", + "sortText": "00000075", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2116,7 +2133,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000075", + "sortText": "00000074", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2133,7 +2150,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000074", + "sortText": "00000073", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2150,7 +2167,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000085", + "sortText": "00000084", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2167,7 +2184,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000084", + "sortText": "00000083", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2184,7 +2201,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000083", + "sortText": "00000082", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2201,7 +2218,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000082", + "sortText": "00000081", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2218,7 +2235,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000081", + "sortText": "00000080", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2235,7 +2252,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000080", + "sortText": "0000007f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2252,7 +2269,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000007f", + "sortText": "0000007e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2269,7 +2286,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000007e", + "sortText": "0000007d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2286,7 +2303,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000007d", + "sortText": "0000007c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2303,7 +2320,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000008a", + "sortText": "00000089", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2320,7 +2337,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000089", + "sortText": "00000088", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2337,7 +2354,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000088", + "sortText": "00000087", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2354,7 +2371,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000087", + "sortText": "00000086", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2371,7 +2388,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000086", + "sortText": "00000085", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2388,7 +2405,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000093", + "sortText": "00000092", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2405,7 +2422,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000092", + "sortText": "00000091", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2422,7 +2439,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000091", + "sortText": "00000090", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2439,7 +2456,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000090", + "sortText": "0000008f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2456,7 +2473,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000008f", + "sortText": "0000008e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2473,7 +2490,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000008e", + "sortText": "0000008d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2490,7 +2507,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000008d", + "sortText": "0000008c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2507,7 +2524,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000008c", + "sortText": "0000008b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2524,7 +2541,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000008b", + "sortText": "0000008a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2541,7 +2558,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000009a", + "sortText": "00000099", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2558,7 +2575,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000099", + "sortText": "00000098", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2575,7 +2592,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000098", + "sortText": "00000097", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2592,7 +2609,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000097", + "sortText": "00000096", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2609,7 +2626,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000096", + "sortText": "00000095", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2626,7 +2643,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000095", + "sortText": "00000094", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2643,7 +2660,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000094", + "sortText": "00000093", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2660,7 +2677,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000a0", + "sortText": "0000009f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2677,7 +2694,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000009f", + "sortText": "0000009e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2694,7 +2711,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000009e", + "sortText": "0000009d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2711,7 +2728,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000a3", + "sortText": "000000a2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2728,7 +2745,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000a2", + "sortText": "000000a1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2745,7 +2762,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000a1", + "sortText": "000000a0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2762,7 +2779,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000009d", + "sortText": "0000009c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2779,7 +2796,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000009c", + "sortText": "0000009b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2796,7 +2813,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000009b", + "sortText": "0000009a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2813,7 +2830,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000ac", + "sortText": "000000ab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2830,7 +2847,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000ab", + "sortText": "000000aa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2847,7 +2864,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000aa", + "sortText": "000000a9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2864,7 +2881,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000a9", + "sortText": "000000a8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2881,7 +2898,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000a8", + "sortText": "000000a7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2898,7 +2915,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000a7", + "sortText": "000000a6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2915,7 +2932,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000a6", + "sortText": "000000a5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2932,7 +2949,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000a5", + "sortText": "000000a4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2949,7 +2966,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000a4", + "sortText": "000000a3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2966,7 +2983,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000b5", + "sortText": "000000b4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -2983,7 +3000,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000b4", + "sortText": "000000b3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3000,7 +3017,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000b3", + "sortText": "000000b2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3017,7 +3034,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000b2", + "sortText": "000000b1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3034,7 +3051,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000b1", + "sortText": "000000b0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3051,7 +3068,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000b0", + "sortText": "000000af", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3068,7 +3085,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000af", + "sortText": "000000ae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3085,7 +3102,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000ae", + "sortText": "000000ad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3102,7 +3119,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000ad", + "sortText": "000000ac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3119,7 +3136,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000be", + "sortText": "000000bd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3136,7 +3153,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000bd", + "sortText": "000000bc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3153,7 +3170,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000bc", + "sortText": "000000bb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3170,7 +3187,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000bb", + "sortText": "000000ba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3187,7 +3204,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000ba", + "sortText": "000000b9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3204,7 +3221,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000b9", + "sortText": "000000b8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3221,7 +3238,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000b8", + "sortText": "000000b7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3238,7 +3255,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000b7", + "sortText": "000000b6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3255,7 +3272,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000b6", + "sortText": "000000b5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3272,7 +3289,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000c1", + "sortText": "000000c0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3289,7 +3306,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000c0", + "sortText": "000000bf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3306,7 +3323,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000bf", + "sortText": "000000be", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3323,7 +3340,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000ca", + "sortText": "000000c9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3340,7 +3357,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000c9", + "sortText": "000000c8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3357,7 +3374,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000c8", + "sortText": "000000c7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3374,7 +3391,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000c7", + "sortText": "000000c6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3391,7 +3408,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000c6", + "sortText": "000000c5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3408,7 +3425,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000c5", + "sortText": "000000c4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3425,7 +3442,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000c4", + "sortText": "000000c3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3442,7 +3459,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000c3", + "sortText": "000000c2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3459,7 +3476,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000c2", + "sortText": "000000c1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3476,7 +3493,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000d1", + "sortText": "000000d0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3493,7 +3510,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000d0", + "sortText": "000000cf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3510,7 +3527,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000cf", + "sortText": "000000ce", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3527,7 +3544,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000ce", + "sortText": "000000cd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3544,7 +3561,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000cd", + "sortText": "000000cc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3561,7 +3578,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000cc", + "sortText": "000000cb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3578,7 +3595,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000cb", + "sortText": "000000ca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3595,7 +3612,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000e1", + "sortText": "000000e0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3612,7 +3629,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000e0", + "sortText": "000000df", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3629,7 +3646,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000df", + "sortText": "000000de", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3646,7 +3663,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000de", + "sortText": "000000dd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3663,7 +3680,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000dd", + "sortText": "000000dc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3680,7 +3697,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000dc", + "sortText": "000000db", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3697,7 +3714,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000db", + "sortText": "000000da", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3714,7 +3731,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000da", + "sortText": "000000d9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3731,7 +3748,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000d9", + "sortText": "000000d8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3748,7 +3765,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000d8", + "sortText": "000000d7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3765,7 +3782,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000d7", + "sortText": "000000d6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3782,7 +3799,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000d6", + "sortText": "000000d5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3799,7 +3816,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000d5", + "sortText": "000000d4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3816,7 +3833,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000d4", + "sortText": "000000d3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3833,7 +3850,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000d3", + "sortText": "000000d2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3850,7 +3867,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000d2", + "sortText": "000000d1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3867,7 +3884,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000e7", + "sortText": "000000e6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3884,7 +3901,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000e6", + "sortText": "000000e5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3901,7 +3918,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000e5", + "sortText": "000000e4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3918,7 +3935,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000e4", + "sortText": "000000e3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3935,7 +3952,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000e3", + "sortText": "000000e2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3952,7 +3969,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000e2", + "sortText": "000000e1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3969,7 +3986,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000f0", + "sortText": "000000ef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -3986,7 +4003,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000ef", + "sortText": "000000ee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4003,7 +4020,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000ee", + "sortText": "000000ed", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4020,7 +4037,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000ed", + "sortText": "000000ec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4037,7 +4054,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000ec", + "sortText": "000000eb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4054,7 +4071,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000eb", + "sortText": "000000ea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4071,7 +4088,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000ea", + "sortText": "000000e9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4088,7 +4105,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000e9", + "sortText": "000000e8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4105,7 +4122,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000e8", + "sortText": "000000e7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4122,7 +4139,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000f7", + "sortText": "000000f6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4139,7 +4156,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000f6", + "sortText": "000000f5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4156,7 +4173,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000f5", + "sortText": "000000f4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4173,7 +4190,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000f4", + "sortText": "000000f3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4190,7 +4207,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000f3", + "sortText": "000000f2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4207,7 +4224,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000f2", + "sortText": "000000f1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4224,7 +4241,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000f1", + "sortText": "000000f0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4241,7 +4258,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000fe", + "sortText": "000000fd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4258,7 +4275,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000fd", + "sortText": "000000fc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4275,7 +4292,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000fc", + "sortText": "000000fb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4292,7 +4309,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000fb", + "sortText": "000000fa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4309,7 +4326,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000fa", + "sortText": "000000f9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4326,7 +4343,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000f9", + "sortText": "000000f8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4343,7 +4360,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000000f8", + "sortText": "000000f7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4351,6 +4368,23 @@ "newText": "'Microsoft.ApiManagement/service/templates@2020-06-01-preview'" } }, + { + "label": "'Microsoft.ApiManagement/service/tenant@2020-06-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.ApiManagement` \nType: `service/tenant` \nAPI Version: `2020-06-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "000000fe", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.ApiManagement/service/tenant@2020-06-01-preview'" + } + }, { "label": "'Microsoft.ApiManagement/service/users@2016-07-07'", "kind": "class", @@ -4513,7 +4547,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000001b", + "sortText": "0000001a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4530,7 +4564,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000001a", + "sortText": "00000019", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4547,7 +4581,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000019", + "sortText": "00000018", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4564,7 +4598,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000018", + "sortText": "00000017", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4581,7 +4615,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000017", + "sortText": "00000016", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4598,7 +4632,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000016", + "sortText": "00000015", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4615,7 +4649,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000015", + "sortText": "00000014", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4632,7 +4666,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000014", + "sortText": "00000013", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4649,7 +4683,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000013", + "sortText": "00000012", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4768,7 +4802,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000113", + "sortText": "00000116", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -4785,37 +4819,20 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000112", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.AppPlatform/Spring/apps/bindings@2020-07-01'" - } - }, - { - "label": "'Microsoft.AppPlatform/Spring/apps/deployments@2019-05-01-preview'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring/apps/deployments` \nAPI Version: `2019-05-01-preview`" - }, - "deprecated": false, - "preselect": false, "sortText": "00000115", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.AppPlatform/Spring/apps/deployments@2019-05-01-preview'" + "newText": "'Microsoft.AppPlatform/Spring/apps/bindings@2020-07-01'" } }, { - "label": "'Microsoft.AppPlatform/Spring/apps/deployments@2020-07-01'", + "label": "'Microsoft.AppPlatform/Spring/apps/bindings@2020-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring/apps/deployments` \nAPI Version: `2020-07-01`" + "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring/apps/bindings` \nAPI Version: `2020-11-01-preview`" }, "deprecated": false, "preselect": false, @@ -4824,117 +4841,100 @@ "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.AppPlatform/Spring/apps/deployments@2020-07-01'" - } - }, - { - "label": "'Microsoft.AppPlatform/Spring/apps/domains@2019-05-01-preview'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring/apps/domains` \nAPI Version: `2019-05-01-preview`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000117", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.AppPlatform/Spring/apps/domains@2019-05-01-preview'" + "newText": "'Microsoft.AppPlatform/Spring/apps/bindings@2020-11-01-preview'" } }, { - "label": "'Microsoft.AppPlatform/Spring/apps/domains@2020-07-01'", + "label": "'Microsoft.AppPlatform/Spring/apps/deployments@2019-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring/apps/domains` \nAPI Version: `2020-07-01`" + "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring/apps/deployments` \nAPI Version: `2019-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000116", + "sortText": "00000119", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.AppPlatform/Spring/apps/domains@2020-07-01'" + "newText": "'Microsoft.AppPlatform/Spring/apps/deployments@2019-05-01-preview'" } }, { - "label": "'Microsoft.AppPlatform/Spring/apps@2019-05-01-preview'", + "label": "'Microsoft.AppPlatform/Spring/apps/deployments@2020-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring/apps` \nAPI Version: `2019-05-01-preview`" + "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring/apps/deployments` \nAPI Version: `2020-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000111", + "sortText": "00000118", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.AppPlatform/Spring/apps@2019-05-01-preview'" + "newText": "'Microsoft.AppPlatform/Spring/apps/deployments@2020-07-01'" } }, { - "label": "'Microsoft.AppPlatform/Spring/apps@2020-07-01'", + "label": "'Microsoft.AppPlatform/Spring/apps/deployments@2020-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring/apps` \nAPI Version: `2020-07-01`" + "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring/apps/deployments` \nAPI Version: `2020-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000110", + "sortText": "00000117", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.AppPlatform/Spring/apps@2020-07-01'" + "newText": "'Microsoft.AppPlatform/Spring/apps/deployments@2020-11-01-preview'" } }, { - "label": "'Microsoft.AppPlatform/Spring/certificates@2019-05-01-preview'", + "label": "'Microsoft.AppPlatform/Spring/apps/domains@2019-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring/certificates` \nAPI Version: `2019-05-01-preview`" + "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring/apps/domains` \nAPI Version: `2019-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000119", + "sortText": "0000011c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.AppPlatform/Spring/certificates@2019-05-01-preview'" + "newText": "'Microsoft.AppPlatform/Spring/apps/domains@2019-05-01-preview'" } }, { - "label": "'Microsoft.AppPlatform/Spring/certificates@2020-07-01'", + "label": "'Microsoft.AppPlatform/Spring/apps/domains@2020-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring/certificates` \nAPI Version: `2020-07-01`" + "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring/apps/domains` \nAPI Version: `2020-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000118", + "sortText": "0000011b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.AppPlatform/Spring/certificates@2020-07-01'" + "newText": "'Microsoft.AppPlatform/Spring/apps/domains@2020-07-01'" } }, { - "label": "'Microsoft.AppPlatform/Spring/configServers@2020-07-01'", + "label": "'Microsoft.AppPlatform/Spring/apps/domains@2020-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring/configServers` \nAPI Version: `2020-07-01`" + "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring/apps/domains` \nAPI Version: `2020-11-01-preview`" }, "deprecated": false, "preselect": false, @@ -4943,100 +4943,83 @@ "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.AppPlatform/Spring/configServers@2020-07-01'" - } - }, - { - "label": "'Microsoft.AppPlatform/Spring/monitoringSettings@2020-07-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring/monitoringSettings` \nAPI Version: `2020-07-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "0000011b", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.AppPlatform/Spring/monitoringSettings@2020-07-01'" + "newText": "'Microsoft.AppPlatform/Spring/apps/domains@2020-11-01-preview'" } }, { - "label": "'Microsoft.AppPlatform/Spring@2019-05-01-preview'", + "label": "'Microsoft.AppPlatform/Spring/apps@2019-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring` \nAPI Version: `2019-05-01-preview`" + "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring/apps` \nAPI Version: `2019-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000010f", + "sortText": "00000113", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.AppPlatform/Spring@2019-05-01-preview'" + "newText": "'Microsoft.AppPlatform/Spring/apps@2019-05-01-preview'" } }, { - "label": "'Microsoft.AppPlatform/Spring@2020-07-01'", + "label": "'Microsoft.AppPlatform/Spring/apps@2020-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring` \nAPI Version: `2020-07-01`" + "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring/apps` \nAPI Version: `2020-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000010e", + "sortText": "00000112", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.AppPlatform/Spring@2020-07-01'" + "newText": "'Microsoft.AppPlatform/Spring/apps@2020-07-01'" } }, { - "label": "'Microsoft.Attestation/attestationProviders@2018-09-01-preview'", + "label": "'Microsoft.AppPlatform/Spring/apps@2020-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Attestation` \nType: `attestationProviders` \nAPI Version: `2018-09-01-preview`" + "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring/apps` \nAPI Version: `2020-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000011d", + "sortText": "00000111", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Attestation/attestationProviders@2018-09-01-preview'" + "newText": "'Microsoft.AppPlatform/Spring/apps@2020-11-01-preview'" } }, { - "label": "'Microsoft.Attestation/attestationProviders@2020-10-01'", + "label": "'Microsoft.AppPlatform/Spring/certificates@2019-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Attestation` \nType: `attestationProviders` \nAPI Version: `2020-10-01`" + "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring/certificates` \nAPI Version: `2019-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000011c", + "sortText": "0000011f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Attestation/attestationProviders@2020-10-01'" + "newText": "'Microsoft.AppPlatform/Spring/certificates@2019-05-01-preview'" } }, { - "label": "'Microsoft.Authorization/accessReviewScheduleDefinitions@2018-05-01-preview'", + "label": "'Microsoft.AppPlatform/Spring/certificates@2020-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `accessReviewScheduleDefinitions` \nAPI Version: `2018-05-01-preview`" + "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring/certificates` \nAPI Version: `2020-07-01`" }, "deprecated": false, "preselect": false, @@ -5045,32 +5028,32 @@ "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Authorization/accessReviewScheduleDefinitions@2018-05-01-preview'" + "newText": "'Microsoft.AppPlatform/Spring/certificates@2020-07-01'" } }, { - "label": "'Microsoft.Authorization/accessReviewScheduleSettings@2018-05-01-preview'", + "label": "'Microsoft.AppPlatform/Spring/certificates@2020-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `accessReviewScheduleSettings` \nAPI Version: `2018-05-01-preview`" + "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring/certificates` \nAPI Version: `2020-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000011f", + "sortText": "0000011d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Authorization/accessReviewScheduleSettings@2018-05-01-preview'" + "newText": "'Microsoft.AppPlatform/Spring/certificates@2020-11-01-preview'" } }, { - "label": "'Microsoft.Authorization/locks@2015-01-01'", + "label": "'Microsoft.AppPlatform/Spring/configServers@2020-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `locks` \nAPI Version: `2015-01-01`" + "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring/configServers` \nAPI Version: `2020-07-01`" }, "deprecated": false, "preselect": false, @@ -5079,15 +5062,15 @@ "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Authorization/locks@2015-01-01'" + "newText": "'Microsoft.AppPlatform/Spring/configServers@2020-07-01'" } }, { - "label": "'Microsoft.Authorization/locks@2016-09-01'", + "label": "'Microsoft.AppPlatform/Spring/configServers@2020-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `locks` \nAPI Version: `2016-09-01`" + "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring/configServers` \nAPI Version: `2020-11-01-preview`" }, "deprecated": false, "preselect": false, @@ -5096,100 +5079,100 @@ "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Authorization/locks@2016-09-01'" + "newText": "'Microsoft.AppPlatform/Spring/configServers@2020-11-01-preview'" } }, { - "label": "'Microsoft.Authorization/policyAssignments@2015-11-01'", + "label": "'Microsoft.AppPlatform/Spring/monitoringSettings@2020-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policyAssignments` \nAPI Version: `2015-11-01`" + "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring/monitoringSettings` \nAPI Version: `2020-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000012c", + "sortText": "00000123", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Authorization/policyAssignments@2015-11-01'" + "newText": "'Microsoft.AppPlatform/Spring/monitoringSettings@2020-07-01'" } }, { - "label": "'Microsoft.Authorization/policyAssignments@2016-12-01'", + "label": "'Microsoft.AppPlatform/Spring/monitoringSettings@2020-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policyAssignments` \nAPI Version: `2016-12-01`" + "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring/monitoringSettings` \nAPI Version: `2020-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000012a", + "sortText": "00000122", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Authorization/policyAssignments@2016-12-01'" + "newText": "'Microsoft.AppPlatform/Spring/monitoringSettings@2020-11-01-preview'" } }, { - "label": "'Microsoft.Authorization/policyAssignments@2017-06-01-preview'", + "label": "'Microsoft.AppPlatform/Spring@2019-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policyAssignments` \nAPI Version: `2017-06-01-preview`" + "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring` \nAPI Version: `2019-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000129", + "sortText": "00000110", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Authorization/policyAssignments@2017-06-01-preview'" + "newText": "'Microsoft.AppPlatform/Spring@2019-05-01-preview'" } }, { - "label": "'Microsoft.Authorization/policyAssignments@2018-03-01'", + "label": "'Microsoft.AppPlatform/Spring@2020-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policyAssignments` \nAPI Version: `2018-03-01`" + "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring` \nAPI Version: `2020-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000128", + "sortText": "0000010f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Authorization/policyAssignments@2018-03-01'" + "newText": "'Microsoft.AppPlatform/Spring@2020-07-01'" } }, { - "label": "'Microsoft.Authorization/policyAssignments@2018-05-01'", + "label": "'Microsoft.AppPlatform/Spring@2020-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policyAssignments` \nAPI Version: `2018-05-01`" + "value": "Namespace: `Microsoft.AppPlatform` \nType: `Spring` \nAPI Version: `2020-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000127", + "sortText": "0000010e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Authorization/policyAssignments@2018-05-01'" + "newText": "'Microsoft.AppPlatform/Spring@2020-11-01-preview'" } }, { - "label": "'Microsoft.Authorization/policyAssignments@2019-01-01'", + "label": "'Microsoft.Attestation/attestationProviders/privateEndpointConnections@2020-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policyAssignments` \nAPI Version: `2019-01-01`" + "value": "Namespace: `Microsoft.Attestation` \nType: `attestationProviders/privateEndpointConnections` \nAPI Version: `2020-10-01`" }, "deprecated": false, "preselect": false, @@ -5198,15 +5181,15 @@ "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Authorization/policyAssignments@2019-01-01'" + "newText": "'Microsoft.Attestation/attestationProviders/privateEndpointConnections@2020-10-01'" } }, { - "label": "'Microsoft.Authorization/policyAssignments@2019-06-01'", + "label": "'Microsoft.Attestation/attestationProviders@2018-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policyAssignments` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Attestation` \nType: `attestationProviders` \nAPI Version: `2018-09-01-preview`" }, "deprecated": false, "preselect": false, @@ -5215,15 +5198,15 @@ "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Authorization/policyAssignments@2019-06-01'" + "newText": "'Microsoft.Attestation/attestationProviders@2018-09-01-preview'" } }, { - "label": "'Microsoft.Authorization/policyAssignments@2019-09-01'", + "label": "'Microsoft.Attestation/attestationProviders@2020-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policyAssignments` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Attestation` \nType: `attestationProviders` \nAPI Version: `2020-10-01`" }, "deprecated": false, "preselect": false, @@ -5232,83 +5215,49 @@ "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Authorization/policyAssignments@2019-09-01'" - } - }, - { - "label": "'Microsoft.Authorization/policyAssignments@2020-03-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policyAssignments` \nAPI Version: `2020-03-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000123", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Authorization/policyAssignments@2020-03-01'" - } - }, - { - "label": "'Microsoft.Authorization/policyAssignments@2020-09-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policyAssignments` \nAPI Version: `2020-09-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000122", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Authorization/policyAssignments@2020-09-01'" + "newText": "'Microsoft.Attestation/attestationProviders@2020-10-01'" } }, { - "label": "'Microsoft.Authorization/policyDefinitions@2016-12-01'", + "label": "'Microsoft.Authorization/locks@2015-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policyDefinitions` \nAPI Version: `2016-12-01`" + "value": "Namespace: `Microsoft.Authorization` \nType: `locks` \nAPI Version: `2015-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000135", + "sortText": "00000128", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Authorization/policyDefinitions@2016-12-01'" + "newText": "'Microsoft.Authorization/locks@2015-01-01'" } }, { - "label": "'Microsoft.Authorization/policyDefinitions@2018-03-01'", + "label": "'Microsoft.Authorization/locks@2016-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policyDefinitions` \nAPI Version: `2018-03-01`" + "value": "Namespace: `Microsoft.Authorization` \nType: `locks` \nAPI Version: `2016-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000134", + "sortText": "00000127", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Authorization/policyDefinitions@2018-03-01'" + "newText": "'Microsoft.Authorization/locks@2016-09-01'" } }, { - "label": "'Microsoft.Authorization/policyDefinitions@2018-05-01'", + "label": "'Microsoft.Authorization/policyAssignments@2015-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policyDefinitions` \nAPI Version: `2018-05-01`" + "value": "Namespace: `Microsoft.Authorization` \nType: `policyAssignments` \nAPI Version: `2015-11-01`" }, "deprecated": false, "preselect": false, @@ -5317,32 +5266,15 @@ "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Authorization/policyDefinitions@2018-05-01'" - } - }, - { - "label": "'Microsoft.Authorization/policyDefinitions@2019-01-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policyDefinitions` \nAPI Version: `2019-01-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000132", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Authorization/policyDefinitions@2019-01-01'" + "newText": "'Microsoft.Authorization/policyAssignments@2015-11-01'" } }, { - "label": "'Microsoft.Authorization/policyDefinitions@2019-06-01'", + "label": "'Microsoft.Authorization/policyAssignments@2016-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policyDefinitions` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Authorization` \nType: `policyAssignments` \nAPI Version: `2016-12-01`" }, "deprecated": false, "preselect": false, @@ -5351,15 +5283,15 @@ "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Authorization/policyDefinitions@2019-06-01'" + "newText": "'Microsoft.Authorization/policyAssignments@2016-12-01'" } }, { - "label": "'Microsoft.Authorization/policyDefinitions@2019-09-01'", + "label": "'Microsoft.Authorization/policyAssignments@2017-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policyDefinitions` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Authorization` \nType: `policyAssignments` \nAPI Version: `2017-06-01-preview`" }, "deprecated": false, "preselect": false, @@ -5368,15 +5300,15 @@ "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Authorization/policyDefinitions@2019-09-01'" + "newText": "'Microsoft.Authorization/policyAssignments@2017-06-01-preview'" } }, { - "label": "'Microsoft.Authorization/policyDefinitions@2020-03-01'", + "label": "'Microsoft.Authorization/policyAssignments@2018-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policyDefinitions` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Authorization` \nType: `policyAssignments` \nAPI Version: `2018-03-01`" }, "deprecated": false, "preselect": false, @@ -5385,15 +5317,15 @@ "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Authorization/policyDefinitions@2020-03-01'" + "newText": "'Microsoft.Authorization/policyAssignments@2018-03-01'" } }, { - "label": "'Microsoft.Authorization/policyDefinitions@2020-09-01'", + "label": "'Microsoft.Authorization/policyAssignments@2018-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policyDefinitions` \nAPI Version: `2020-09-01`" + "value": "Namespace: `Microsoft.Authorization` \nType: `policyAssignments` \nAPI Version: `2018-05-01`" }, "deprecated": false, "preselect": false, @@ -5402,160 +5334,109 @@ "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Authorization/policyDefinitions@2020-09-01'" - } - }, - { - "label": "'Microsoft.Authorization/policyExemptions@2020-07-01-preview'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policyExemptions` \nAPI Version: `2020-07-01-preview`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000139", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Authorization/policyExemptions@2020-07-01-preview'" - } - }, - { - "label": "'Microsoft.Authorization/policySetDefinitions@2017-06-01-preview'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policySetDefinitions` \nAPI Version: `2017-06-01-preview`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000141", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Authorization/policySetDefinitions@2017-06-01-preview'" - } - }, - { - "label": "'Microsoft.Authorization/policySetDefinitions@2018-03-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policySetDefinitions` \nAPI Version: `2018-03-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000140", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Authorization/policySetDefinitions@2018-03-01'" + "newText": "'Microsoft.Authorization/policyAssignments@2018-05-01'" } }, { - "label": "'Microsoft.Authorization/policySetDefinitions@2018-05-01'", + "label": "'Microsoft.Authorization/policyAssignments@2019-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policySetDefinitions` \nAPI Version: `2018-05-01`" + "value": "Namespace: `Microsoft.Authorization` \nType: `policyAssignments` \nAPI Version: `2019-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000013f", + "sortText": "0000012d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Authorization/policySetDefinitions@2018-05-01'" + "newText": "'Microsoft.Authorization/policyAssignments@2019-01-01'" } }, { - "label": "'Microsoft.Authorization/policySetDefinitions@2019-01-01'", + "label": "'Microsoft.Authorization/policyAssignments@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policySetDefinitions` \nAPI Version: `2019-01-01`" + "value": "Namespace: `Microsoft.Authorization` \nType: `policyAssignments` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000013e", + "sortText": "0000012c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Authorization/policySetDefinitions@2019-01-01'" + "newText": "'Microsoft.Authorization/policyAssignments@2019-06-01'" } }, { - "label": "'Microsoft.Authorization/policySetDefinitions@2019-06-01'", + "label": "'Microsoft.Authorization/policyAssignments@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policySetDefinitions` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Authorization` \nType: `policyAssignments` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000013d", + "sortText": "0000012b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Authorization/policySetDefinitions@2019-06-01'" + "newText": "'Microsoft.Authorization/policyAssignments@2019-09-01'" } }, { - "label": "'Microsoft.Authorization/policySetDefinitions@2019-09-01'", + "label": "'Microsoft.Authorization/policyAssignments@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policySetDefinitions` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Authorization` \nType: `policyAssignments` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000013c", + "sortText": "0000012a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Authorization/policySetDefinitions@2019-09-01'" + "newText": "'Microsoft.Authorization/policyAssignments@2020-03-01'" } }, { - "label": "'Microsoft.Authorization/policySetDefinitions@2020-03-01'", + "label": "'Microsoft.Authorization/policyAssignments@2020-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policySetDefinitions` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Authorization` \nType: `policyAssignments` \nAPI Version: `2020-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000013b", + "sortText": "00000129", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Authorization/policySetDefinitions@2020-03-01'" + "newText": "'Microsoft.Authorization/policyAssignments@2020-09-01'" } }, { - "label": "'Microsoft.Authorization/policySetDefinitions@2020-09-01'", + "label": "'Microsoft.Authorization/policyExemptions@2020-07-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policySetDefinitions` \nAPI Version: `2020-09-01`" + "value": "Namespace: `Microsoft.Authorization` \nType: `policyExemptions` \nAPI Version: `2020-07-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000013a", + "sortText": "00000135", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Authorization/policySetDefinitions@2020-09-01'" + "newText": "'Microsoft.Authorization/policyExemptions@2020-07-01-preview'" } }, { @@ -5567,7 +5448,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000012d", + "sortText": "00000134", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5584,7 +5465,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000012b", + "sortText": "00000132", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5592,57 +5473,6 @@ "newText": "'Microsoft.Authorization/policyassignments@2016-04-01'" } }, - { - "label": "'Microsoft.Authorization/policydefinitions@2015-10-01-preview'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policydefinitions` \nAPI Version: `2015-10-01-preview`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000138", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Authorization/policydefinitions@2015-10-01-preview'" - } - }, - { - "label": "'Microsoft.Authorization/policydefinitions@2015-11-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policydefinitions` \nAPI Version: `2015-11-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000137", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Authorization/policydefinitions@2015-11-01'" - } - }, - { - "label": "'Microsoft.Authorization/policydefinitions@2016-04-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Authorization` \nType: `policydefinitions` \nAPI Version: `2016-04-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000136", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Authorization/policydefinitions@2016-04-01'" - } - }, { "label": "'Microsoft.Authorization/roleAssignments@2015-07-01'", "kind": "class", @@ -5652,7 +5482,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000146", + "sortText": "0000013a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5669,7 +5499,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000145", + "sortText": "00000139", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5686,7 +5516,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000144", + "sortText": "00000138", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5703,7 +5533,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000143", + "sortText": "00000137", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5720,7 +5550,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000142", + "sortText": "00000136", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5737,7 +5567,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000148", + "sortText": "0000013c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5754,7 +5584,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000147", + "sortText": "0000013b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5771,7 +5601,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000149", + "sortText": "0000013d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5779,23 +5609,6 @@ "newText": "'Microsoft.Automanage/accounts@2020-06-30-preview'" } }, - { - "label": "'Microsoft.Automanage/configurationProfileAssignments@2020-06-30-preview'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Automanage` \nType: `configurationProfileAssignments` \nAPI Version: `2020-06-30-preview`" - }, - "deprecated": false, - "preselect": false, - "sortText": "0000014a", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Automanage/configurationProfileAssignments@2020-06-30-preview'" - } - }, { "label": "'Microsoft.Automanage/configurationProfilePreferences@2020-06-30-preview'", "kind": "class", @@ -5805,7 +5618,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000014b", + "sortText": "0000013e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5822,7 +5635,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000014d", + "sortText": "00000140", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5839,7 +5652,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000014f", + "sortText": "00000142", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5856,7 +5669,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000014e", + "sortText": "00000141", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5873,7 +5686,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000150", + "sortText": "00000143", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5890,7 +5703,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000152", + "sortText": "00000145", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5907,7 +5720,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000151", + "sortText": "00000144", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5924,7 +5737,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000153", + "sortText": "00000146", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5941,7 +5754,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000156", + "sortText": "00000149", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5958,7 +5771,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000155", + "sortText": "00000148", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5975,7 +5788,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000154", + "sortText": "00000147", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -5992,7 +5805,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000157", + "sortText": "0000014a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6009,7 +5822,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000159", + "sortText": "0000014c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6026,7 +5839,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000158", + "sortText": "0000014b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6043,7 +5856,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000015a", + "sortText": "0000014d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6060,7 +5873,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000015b", + "sortText": "0000014e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6077,7 +5890,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000015d", + "sortText": "00000150", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6094,7 +5907,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000015c", + "sortText": "0000014f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6111,7 +5924,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000015e", + "sortText": "00000151", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6128,7 +5941,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000015f", + "sortText": "00000152", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6145,7 +5958,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000161", + "sortText": "00000154", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6162,7 +5975,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000160", + "sortText": "00000153", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6179,7 +5992,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000162", + "sortText": "00000155", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6196,7 +6009,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000163", + "sortText": "00000156", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6213,7 +6026,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000164", + "sortText": "00000157", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6230,7 +6043,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000014c", + "sortText": "0000013f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6247,7 +6060,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000166", + "sortText": "00000159", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6264,7 +6077,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000165", + "sortText": "00000158", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6281,7 +6094,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000176", + "sortText": "0000016a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6290,49 +6103,15 @@ } }, { - "label": "'Microsoft.AzureBridge.Admin/activations/downloadedProducts@2016-01-01'", + "label": "'Microsoft.AzureData/dataControllers@2019-07-24-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.AzureBridge.Admin` \nType: `activations/downloadedProducts` \nAPI Version: `2016-01-01`" + "value": "Namespace: `Microsoft.AzureData` \nType: `dataControllers` \nAPI Version: `2019-07-24-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000178", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.AzureBridge.Admin/activations/downloadedProducts@2016-01-01'" - } - }, - { - "label": "'Microsoft.AzureBridge.Admin/activations@2016-01-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.AzureBridge.Admin` \nType: `activations` \nAPI Version: `2016-01-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000177", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.AzureBridge.Admin/activations@2016-01-01'" - } - }, - { - "label": "'Microsoft.AzureData/dataControllers@2019-07-24-preview'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.AzureData` \nType: `dataControllers` \nAPI Version: `2019-07-24-preview`" - }, - "deprecated": false, - "preselect": false, - "sortText": "0000017a", + "sortText": "0000016c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6349,7 +6128,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000179", + "sortText": "0000016b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6366,7 +6145,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000017b", + "sortText": "0000016d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6383,7 +6162,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000017d", + "sortText": "0000016f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6400,7 +6179,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000017c", + "sortText": "0000016e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6417,7 +6196,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000017f", + "sortText": "00000171", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6434,7 +6213,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000017e", + "sortText": "00000170", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6451,7 +6230,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000181", + "sortText": "00000173", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6468,7 +6247,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000180", + "sortText": "00000172", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6485,7 +6264,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000183", + "sortText": "00000175", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6502,7 +6281,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000182", + "sortText": "00000174", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6519,7 +6298,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000184", + "sortText": "00000176", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6527,23 +6306,6 @@ "newText": "'Microsoft.AzureStackHCI/clusters@2020-03-01-preview'" } }, - { - "label": "'Microsoft.Backup.Admin/backupLocations@2018-09-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Backup.Admin` \nType: `backupLocations` \nAPI Version: `2018-09-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000185", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Backup.Admin/backupLocations@2018-09-01'" - } - }, { "label": "'Microsoft.Batch/batchAccounts/applications/versions@2018-12-01'", "kind": "class", @@ -6553,7 +6315,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000019f", + "sortText": "00000190", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6570,7 +6332,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000019e", + "sortText": "0000018f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6587,7 +6349,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000019d", + "sortText": "0000018e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6604,7 +6366,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000019c", + "sortText": "0000018d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6621,7 +6383,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000019b", + "sortText": "0000018c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6638,7 +6400,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000019a", + "sortText": "0000018b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6655,7 +6417,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000199", + "sortText": "0000018a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6672,7 +6434,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000198", + "sortText": "00000189", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6689,7 +6451,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000197", + "sortText": "00000188", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6706,7 +6468,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000196", + "sortText": "00000187", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6723,7 +6485,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000195", + "sortText": "00000186", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6740,7 +6502,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000194", + "sortText": "00000185", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6757,7 +6519,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000193", + "sortText": "00000184", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6774,7 +6536,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000192", + "sortText": "00000183", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6791,7 +6553,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000191", + "sortText": "00000182", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6808,7 +6570,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000190", + "sortText": "00000181", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6825,7 +6587,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001a6", + "sortText": "00000197", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6842,7 +6604,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001a5", + "sortText": "00000196", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6859,7 +6621,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001a4", + "sortText": "00000195", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6876,7 +6638,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001a3", + "sortText": "00000194", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6893,7 +6655,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001a2", + "sortText": "00000193", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6910,7 +6672,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001a1", + "sortText": "00000192", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6927,7 +6689,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001a0", + "sortText": "00000191", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6944,7 +6706,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001ad", + "sortText": "0000019e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6961,7 +6723,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001ac", + "sortText": "0000019d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6978,7 +6740,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001ab", + "sortText": "0000019c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -6995,7 +6757,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001aa", + "sortText": "0000019b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7012,7 +6774,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001a9", + "sortText": "0000019a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7029,7 +6791,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001a8", + "sortText": "00000199", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7046,7 +6808,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001a7", + "sortText": "00000198", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7063,7 +6825,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000018f", + "sortText": "00000180", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7080,7 +6842,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000018e", + "sortText": "0000017f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7097,7 +6859,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000018d", + "sortText": "0000017e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7114,7 +6876,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000018c", + "sortText": "0000017d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7131,7 +6893,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000018b", + "sortText": "0000017c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7148,7 +6910,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000018a", + "sortText": "0000017b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7165,7 +6927,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000189", + "sortText": "0000017a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7182,7 +6944,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000188", + "sortText": "00000179", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7199,7 +6961,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000187", + "sortText": "00000178", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7216,7 +6978,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000186", + "sortText": "00000177", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7233,7 +6995,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001af", + "sortText": "000001a0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7250,7 +7012,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001ae", + "sortText": "0000019f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7267,7 +7029,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001b1", + "sortText": "000001a2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7284,7 +7046,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001b0", + "sortText": "000001a1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7301,7 +7063,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001b3", + "sortText": "000001a4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7318,7 +7080,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001b2", + "sortText": "000001a3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7335,7 +7097,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001b5", + "sortText": "000001a6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7352,7 +7114,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001b6", + "sortText": "000001a7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7369,7 +7131,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001b7", + "sortText": "000001a8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7386,7 +7148,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000001b4", + "sortText": "000001a5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -7395,1524 +7157,1524 @@ } }, { - "label": "'Microsoft.Billing/billingAccounts/billingProfiles/instructions@2019-10-01-preview'", + "label": "'Microsoft.Blockchain/blockchainMembers/transactionNodes@2018-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/billingProfiles/instructions` \nAPI Version: `2019-10-01-preview`" + "value": "Namespace: `Microsoft.Blockchain` \nType: `blockchainMembers/transactionNodes` \nAPI Version: `2018-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001bc", + "sortText": "000001aa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Billing/billingAccounts/billingProfiles/instructions@2019-10-01-preview'" + "newText": "'Microsoft.Blockchain/blockchainMembers/transactionNodes@2018-06-01-preview'" } }, { - "label": "'Microsoft.Billing/billingAccounts/billingProfiles/instructions@2020-05-01'", + "label": "'Microsoft.Blockchain/blockchainMembers@2018-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/billingProfiles/instructions` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Blockchain` \nType: `blockchainMembers` \nAPI Version: `2018-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001bb", + "sortText": "000001a9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Billing/billingAccounts/billingProfiles/instructions@2020-05-01'" + "newText": "'Microsoft.Blockchain/blockchainMembers@2018-06-01-preview'" } }, { - "label": "'Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections@2019-10-01-preview'", + "label": "'Microsoft.Blueprint/blueprintAssignments@2018-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/billingProfiles/invoiceSections` \nAPI Version: `2019-10-01-preview`" + "value": "Namespace: `Microsoft.Blueprint` \nType: `blueprintAssignments` \nAPI Version: `2018-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001be", + "sortText": "000001ab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections@2019-10-01-preview'" + "newText": "'Microsoft.Blueprint/blueprintAssignments@2018-11-01-preview'" } }, { - "label": "'Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections@2020-05-01'", + "label": "'Microsoft.Blueprint/blueprints/artifacts@2018-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/billingProfiles/invoiceSections` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Blueprint` \nType: `blueprints/artifacts` \nAPI Version: `2018-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001bd", + "sortText": "000001ad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Billing/billingAccounts/billingProfiles/invoiceSections@2020-05-01'" + "newText": "'Microsoft.Blueprint/blueprints/artifacts@2018-11-01-preview'" } }, { - "label": "'Microsoft.Billing/billingAccounts/billingProfiles/policies@2018-11-01-preview'", + "label": "'Microsoft.Blueprint/blueprints/versions@2018-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/billingProfiles/policies` \nAPI Version: `2018-11-01-preview`" + "value": "Namespace: `Microsoft.Blueprint` \nType: `blueprints/versions` \nAPI Version: `2018-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001c1", + "sortText": "000001ae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Billing/billingAccounts/billingProfiles/policies@2018-11-01-preview'" + "newText": "'Microsoft.Blueprint/blueprints/versions@2018-11-01-preview'" } }, { - "label": "'Microsoft.Billing/billingAccounts/billingProfiles/policies@2019-10-01-preview'", + "label": "'Microsoft.Blueprint/blueprints@2018-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/billingProfiles/policies` \nAPI Version: `2019-10-01-preview`" + "value": "Namespace: `Microsoft.Blueprint` \nType: `blueprints` \nAPI Version: `2018-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001c0", + "sortText": "000001ac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Billing/billingAccounts/billingProfiles/policies@2019-10-01-preview'" + "newText": "'Microsoft.Blueprint/blueprints@2018-11-01-preview'" } }, { - "label": "'Microsoft.Billing/billingAccounts/billingProfiles/policies@2020-05-01'", + "label": "'Microsoft.BotService/botServices/Connections@2017-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/billingProfiles/policies` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.BotService` \nType: `botServices/Connections` \nAPI Version: `2017-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001bf", + "sortText": "000001b7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Billing/billingAccounts/billingProfiles/policies@2020-05-01'" + "newText": "'Microsoft.BotService/botServices/Connections@2017-12-01'" } }, { - "label": "'Microsoft.Billing/billingAccounts/billingProfiles@2018-11-01-preview'", + "label": "'Microsoft.BotService/botServices/Connections@2018-07-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/billingProfiles` \nAPI Version: `2018-11-01-preview`" + "value": "Namespace: `Microsoft.BotService` \nType: `botServices/Connections` \nAPI Version: `2018-07-12`" }, "deprecated": false, "preselect": false, - "sortText": "000001ba", + "sortText": "000001b6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Billing/billingAccounts/billingProfiles@2018-11-01-preview'" + "newText": "'Microsoft.BotService/botServices/Connections@2018-07-12'" } }, { - "label": "'Microsoft.Billing/billingAccounts/billingProfiles@2019-10-01-preview'", + "label": "'Microsoft.BotService/botServices/Connections@2020-06-02'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/billingProfiles` \nAPI Version: `2019-10-01-preview`" + "value": "Namespace: `Microsoft.BotService` \nType: `botServices/Connections` \nAPI Version: `2020-06-02`" }, "deprecated": false, "preselect": false, - "sortText": "000001b9", + "sortText": "000001b5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Billing/billingAccounts/billingProfiles@2019-10-01-preview'" + "newText": "'Microsoft.BotService/botServices/Connections@2020-06-02'" } }, { - "label": "'Microsoft.Billing/billingAccounts/billingProfiles@2020-05-01'", + "label": "'Microsoft.BotService/botServices/channels@2017-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/billingProfiles` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.BotService` \nType: `botServices/channels` \nAPI Version: `2017-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001b8", + "sortText": "000001b4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Billing/billingAccounts/billingProfiles@2020-05-01'" + "newText": "'Microsoft.BotService/botServices/channels@2017-12-01'" } }, { - "label": "'Microsoft.Billing/billingAccounts/billingRoleAssignments@2019-10-01-preview'", + "label": "'Microsoft.BotService/botServices/channels@2018-07-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/billingRoleAssignments` \nAPI Version: `2019-10-01-preview`" + "value": "Namespace: `Microsoft.BotService` \nType: `botServices/channels` \nAPI Version: `2018-07-12`" }, "deprecated": false, "preselect": false, - "sortText": "000001c2", + "sortText": "000001b3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Billing/billingAccounts/billingRoleAssignments@2019-10-01-preview'" + "newText": "'Microsoft.BotService/botServices/channels@2018-07-12'" } }, { - "label": "'Microsoft.Billing/billingAccounts/customers/policies@2019-10-01-preview'", + "label": "'Microsoft.BotService/botServices/channels@2020-06-02'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/customers/policies` \nAPI Version: `2019-10-01-preview`" + "value": "Namespace: `Microsoft.BotService` \nType: `botServices/channels` \nAPI Version: `2020-06-02`" }, "deprecated": false, "preselect": false, - "sortText": "000001c4", + "sortText": "000001b2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Billing/billingAccounts/customers/policies@2019-10-01-preview'" + "newText": "'Microsoft.BotService/botServices/channels@2020-06-02'" } }, { - "label": "'Microsoft.Billing/billingAccounts/customers/policies@2020-05-01'", + "label": "'Microsoft.BotService/botServices@2017-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/customers/policies` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.BotService` \nType: `botServices` \nAPI Version: `2017-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001c3", + "sortText": "000001b1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Billing/billingAccounts/customers/policies@2020-05-01'" + "newText": "'Microsoft.BotService/botServices@2017-12-01'" } }, { - "label": "'Microsoft.Billing/billingAccounts/departments/billingRoleAssignments@2019-10-01-preview'", + "label": "'Microsoft.BotService/botServices@2018-07-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/departments/billingRoleAssignments` \nAPI Version: `2019-10-01-preview`" + "value": "Namespace: `Microsoft.BotService` \nType: `botServices` \nAPI Version: `2018-07-12`" }, "deprecated": false, "preselect": false, - "sortText": "000001c5", + "sortText": "000001b0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Billing/billingAccounts/departments/billingRoleAssignments@2019-10-01-preview'" + "newText": "'Microsoft.BotService/botServices@2018-07-12'" } }, { - "label": "'Microsoft.Billing/billingAccounts/enrollmentAccounts/billingRoleAssignments@2019-10-01-preview'", + "label": "'Microsoft.BotService/botServices@2020-06-02'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/enrollmentAccounts/billingRoleAssignments` \nAPI Version: `2019-10-01-preview`" + "value": "Namespace: `Microsoft.BotService` \nType: `botServices` \nAPI Version: `2020-06-02`" }, "deprecated": false, "preselect": false, - "sortText": "000001c6", + "sortText": "000001af", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Billing/billingAccounts/enrollmentAccounts/billingRoleAssignments@2019-10-01-preview'" + "newText": "'Microsoft.BotService/botServices@2020-06-02'" } }, { - "label": "'Microsoft.Billing/billingAccounts/invoiceSections@2018-11-01-preview'", + "label": "'Microsoft.BotService/enterpriseChannels@2018-07-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/invoiceSections` \nAPI Version: `2018-11-01-preview`" + "value": "Namespace: `Microsoft.BotService` \nType: `enterpriseChannels` \nAPI Version: `2018-07-12`" }, "deprecated": false, "preselect": false, - "sortText": "000001c7", + "sortText": "000001b8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Billing/billingAccounts/invoiceSections@2018-11-01-preview'" + "newText": "'Microsoft.BotService/enterpriseChannels@2018-07-12'" } }, { - "label": "'Microsoft.Billing/billingAccounts/lineOfCredit@2018-11-01-preview'", + "label": "'Microsoft.Cache/Redis/firewallRules@2016-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Billing` \nType: `billingAccounts/lineOfCredit` \nAPI Version: `2018-11-01-preview`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/firewallRules` \nAPI Version: `2016-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001c8", + "sortText": "000001c3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Billing/billingAccounts/lineOfCredit@2018-11-01-preview'" + "newText": "'Microsoft.Cache/Redis/firewallRules@2016-04-01'" } }, { - "label": "'Microsoft.Blockchain/blockchainMembers/transactionNodes@2018-06-01-preview'", + "label": "'Microsoft.Cache/Redis/firewallRules@2017-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Blockchain` \nType: `blockchainMembers/transactionNodes` \nAPI Version: `2018-06-01-preview`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/firewallRules` \nAPI Version: `2017-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001ca", + "sortText": "000001c2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Blockchain/blockchainMembers/transactionNodes@2018-06-01-preview'" + "newText": "'Microsoft.Cache/Redis/firewallRules@2017-02-01'" } }, { - "label": "'Microsoft.Blockchain/blockchainMembers@2018-06-01-preview'", + "label": "'Microsoft.Cache/Redis/firewallRules@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Blockchain` \nType: `blockchainMembers` \nAPI Version: `2018-06-01-preview`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/firewallRules` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001c9", + "sortText": "000001c1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Blockchain/blockchainMembers@2018-06-01-preview'" + "newText": "'Microsoft.Cache/Redis/firewallRules@2017-10-01'" } }, { - "label": "'Microsoft.Blueprint/blueprintAssignments@2017-11-11-preview'", + "label": "'Microsoft.Cache/Redis/firewallRules@2018-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Blueprint` \nType: `blueprintAssignments` \nAPI Version: `2017-11-11-preview`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/firewallRules` \nAPI Version: `2018-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001cc", + "sortText": "000001c0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Blueprint/blueprintAssignments@2017-11-11-preview'" + "newText": "'Microsoft.Cache/Redis/firewallRules@2018-03-01'" } }, { - "label": "'Microsoft.Blueprint/blueprintAssignments@2018-11-01-preview'", + "label": "'Microsoft.Cache/Redis/firewallRules@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Blueprint` \nType: `blueprintAssignments` \nAPI Version: `2018-11-01-preview`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/firewallRules` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001cb", + "sortText": "000001bf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Blueprint/blueprintAssignments@2018-11-01-preview'" + "newText": "'Microsoft.Cache/Redis/firewallRules@2019-07-01'" } }, { - "label": "'Microsoft.Blueprint/blueprints/artifacts@2017-11-11-preview'", + "label": "'Microsoft.Cache/Redis/linkedServers@2017-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Blueprint` \nType: `blueprints/artifacts` \nAPI Version: `2017-11-11-preview`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/linkedServers` \nAPI Version: `2017-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001d0", + "sortText": "000001c7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Blueprint/blueprints/artifacts@2017-11-11-preview'" + "newText": "'Microsoft.Cache/Redis/linkedServers@2017-02-01'" } }, { - "label": "'Microsoft.Blueprint/blueprints/artifacts@2018-11-01-preview'", + "label": "'Microsoft.Cache/Redis/linkedServers@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Blueprint` \nType: `blueprints/artifacts` \nAPI Version: `2018-11-01-preview`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/linkedServers` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001cf", + "sortText": "000001c6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Blueprint/blueprints/artifacts@2018-11-01-preview'" + "newText": "'Microsoft.Cache/Redis/linkedServers@2017-10-01'" } }, { - "label": "'Microsoft.Blueprint/blueprints/versions@2018-11-01-preview'", + "label": "'Microsoft.Cache/Redis/linkedServers@2018-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Blueprint` \nType: `blueprints/versions` \nAPI Version: `2018-11-01-preview`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/linkedServers` \nAPI Version: `2018-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001d1", + "sortText": "000001c5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Blueprint/blueprints/versions@2018-11-01-preview'" + "newText": "'Microsoft.Cache/Redis/linkedServers@2018-03-01'" } }, { - "label": "'Microsoft.Blueprint/blueprints@2017-11-11-preview'", + "label": "'Microsoft.Cache/Redis/linkedServers@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Blueprint` \nType: `blueprints` \nAPI Version: `2017-11-11-preview`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/linkedServers` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001ce", + "sortText": "000001c4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Blueprint/blueprints@2017-11-11-preview'" + "newText": "'Microsoft.Cache/Redis/linkedServers@2019-07-01'" } }, { - "label": "'Microsoft.Blueprint/blueprints@2018-11-01-preview'", + "label": "'Microsoft.Cache/Redis/patchSchedules@2016-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Blueprint` \nType: `blueprints` \nAPI Version: `2018-11-01-preview`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/patchSchedules` \nAPI Version: `2016-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001cd", + "sortText": "000001cc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Blueprint/blueprints@2018-11-01-preview'" + "newText": "'Microsoft.Cache/Redis/patchSchedules@2016-04-01'" } }, { - "label": "'Microsoft.BotService/botServices/Connections@2017-12-01'", + "label": "'Microsoft.Cache/Redis/patchSchedules@2017-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.BotService` \nType: `botServices/Connections` \nAPI Version: `2017-12-01`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/patchSchedules` \nAPI Version: `2017-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001da", + "sortText": "000001cb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.BotService/botServices/Connections@2017-12-01'" + "newText": "'Microsoft.Cache/Redis/patchSchedules@2017-02-01'" } }, { - "label": "'Microsoft.BotService/botServices/Connections@2018-07-12'", + "label": "'Microsoft.Cache/Redis/patchSchedules@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.BotService` \nType: `botServices/Connections` \nAPI Version: `2018-07-12`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/patchSchedules` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001d9", + "sortText": "000001ca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.BotService/botServices/Connections@2018-07-12'" + "newText": "'Microsoft.Cache/Redis/patchSchedules@2017-10-01'" } }, { - "label": "'Microsoft.BotService/botServices/Connections@2020-06-02'", + "label": "'Microsoft.Cache/Redis/patchSchedules@2018-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.BotService` \nType: `botServices/Connections` \nAPI Version: `2020-06-02`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/patchSchedules` \nAPI Version: `2018-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001d8", + "sortText": "000001c9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.BotService/botServices/Connections@2020-06-02'" + "newText": "'Microsoft.Cache/Redis/patchSchedules@2018-03-01'" } }, { - "label": "'Microsoft.BotService/botServices/channels@2017-12-01'", + "label": "'Microsoft.Cache/Redis/patchSchedules@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.BotService` \nType: `botServices/channels` \nAPI Version: `2017-12-01`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis/patchSchedules` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001d7", + "sortText": "000001c8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.BotService/botServices/channels@2017-12-01'" + "newText": "'Microsoft.Cache/Redis/patchSchedules@2019-07-01'" } }, { - "label": "'Microsoft.BotService/botServices/channels@2018-07-12'", + "label": "'Microsoft.Cache/Redis@2015-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.BotService` \nType: `botServices/channels` \nAPI Version: `2018-07-12`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis` \nAPI Version: `2015-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001d6", + "sortText": "000001be", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.BotService/botServices/channels@2018-07-12'" + "newText": "'Microsoft.Cache/Redis@2015-08-01'" } }, { - "label": "'Microsoft.BotService/botServices/channels@2020-06-02'", + "label": "'Microsoft.Cache/Redis@2016-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.BotService` \nType: `botServices/channels` \nAPI Version: `2020-06-02`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis` \nAPI Version: `2016-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001d5", + "sortText": "000001bd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.BotService/botServices/channels@2020-06-02'" + "newText": "'Microsoft.Cache/Redis@2016-04-01'" } }, { - "label": "'Microsoft.BotService/botServices@2017-12-01'", + "label": "'Microsoft.Cache/Redis@2017-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.BotService` \nType: `botServices` \nAPI Version: `2017-12-01`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis` \nAPI Version: `2017-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001d4", + "sortText": "000001bc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.BotService/botServices@2017-12-01'" + "newText": "'Microsoft.Cache/Redis@2017-02-01'" } }, { - "label": "'Microsoft.BotService/botServices@2018-07-12'", + "label": "'Microsoft.Cache/Redis@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.BotService` \nType: `botServices` \nAPI Version: `2018-07-12`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001d3", + "sortText": "000001bb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.BotService/botServices@2018-07-12'" + "newText": "'Microsoft.Cache/Redis@2017-10-01'" } }, { - "label": "'Microsoft.BotService/botServices@2020-06-02'", + "label": "'Microsoft.Cache/Redis@2018-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.BotService` \nType: `botServices` \nAPI Version: `2020-06-02`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis` \nAPI Version: `2018-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001d2", + "sortText": "000001ba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.BotService/botServices@2020-06-02'" + "newText": "'Microsoft.Cache/Redis@2018-03-01'" } }, { - "label": "'Microsoft.BotService/enterpriseChannels@2018-07-12'", + "label": "'Microsoft.Cache/Redis@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.BotService` \nType: `enterpriseChannels` \nAPI Version: `2018-07-12`" + "value": "Namespace: `Microsoft.Cache` \nType: `Redis` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001db", + "sortText": "000001b9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.BotService/enterpriseChannels@2018-07-12'" + "newText": "'Microsoft.Cache/Redis@2019-07-01'" } }, { - "label": "'Microsoft.Cache/Redis/firewallRules@2016-04-01'", + "label": "'Microsoft.Cache/redisEnterprise/databases@2020-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/firewallRules` \nAPI Version: `2016-04-01`" + "value": "Namespace: `Microsoft.Cache` \nType: `redisEnterprise/databases` \nAPI Version: `2020-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001e6", + "sortText": "000001ce", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/firewallRules@2016-04-01'" + "newText": "'Microsoft.Cache/redisEnterprise/databases@2020-10-01-preview'" } }, { - "label": "'Microsoft.Cache/Redis/firewallRules@2017-02-01'", + "label": "'Microsoft.Cache/redisEnterprise/privateEndpointConnections@2020-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/firewallRules` \nAPI Version: `2017-02-01`" + "value": "Namespace: `Microsoft.Cache` \nType: `redisEnterprise/privateEndpointConnections` \nAPI Version: `2020-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001e5", + "sortText": "000001cf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/firewallRules@2017-02-01'" + "newText": "'Microsoft.Cache/redisEnterprise/privateEndpointConnections@2020-10-01-preview'" } }, { - "label": "'Microsoft.Cache/Redis/firewallRules@2017-10-01'", + "label": "'Microsoft.Cache/redisEnterprise@2020-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/firewallRules` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Cache` \nType: `redisEnterprise` \nAPI Version: `2020-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001e4", + "sortText": "000001cd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/firewallRules@2017-10-01'" + "newText": "'Microsoft.Cache/redisEnterprise@2020-10-01-preview'" } }, { - "label": "'Microsoft.Cache/Redis/firewallRules@2018-03-01'", + "label": "'Microsoft.Cdn/CdnWebApplicationFirewallPolicies@2019-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/firewallRules` \nAPI Version: `2018-03-01`" + "value": "Namespace: `Microsoft.Cdn` \nType: `CdnWebApplicationFirewallPolicies` \nAPI Version: `2019-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "000001e3", + "sortText": "000001d2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/firewallRules@2018-03-01'" + "newText": "'Microsoft.Cdn/CdnWebApplicationFirewallPolicies@2019-06-15'" } }, { - "label": "'Microsoft.Cache/Redis/firewallRules@2019-07-01'", + "label": "'Microsoft.Cdn/CdnWebApplicationFirewallPolicies@2019-06-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/firewallRules` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Cdn` \nType: `CdnWebApplicationFirewallPolicies` \nAPI Version: `2019-06-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001e2", + "sortText": "000001d1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/firewallRules@2019-07-01'" + "newText": "'Microsoft.Cdn/CdnWebApplicationFirewallPolicies@2019-06-15-preview'" } }, { - "label": "'Microsoft.Cache/Redis/linkedServers@2017-02-01'", + "label": "'Microsoft.Cdn/CdnWebApplicationFirewallPolicies@2020-04-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/linkedServers` \nAPI Version: `2017-02-01`" + "value": "Namespace: `Microsoft.Cdn` \nType: `CdnWebApplicationFirewallPolicies` \nAPI Version: `2020-04-15`" }, "deprecated": false, "preselect": false, - "sortText": "000001ea", + "sortText": "000001d0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/linkedServers@2017-02-01'" + "newText": "'Microsoft.Cdn/CdnWebApplicationFirewallPolicies@2020-04-15'" } }, { - "label": "'Microsoft.Cache/Redis/linkedServers@2017-10-01'", + "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2015-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/linkedServers` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2015-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001e9", + "sortText": "000001f0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/linkedServers@2017-10-01'" + "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2015-06-01'" } }, { - "label": "'Microsoft.Cache/Redis/linkedServers@2018-03-01'", + "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2016-04-02'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/linkedServers` \nAPI Version: `2018-03-01`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2016-04-02`" }, "deprecated": false, "preselect": false, - "sortText": "000001e8", + "sortText": "000001ef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/linkedServers@2018-03-01'" + "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2016-04-02'" } }, { - "label": "'Microsoft.Cache/Redis/linkedServers@2019-07-01'", + "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2016-10-02'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/linkedServers` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2016-10-02`" }, "deprecated": false, "preselect": false, - "sortText": "000001e7", + "sortText": "000001ee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/linkedServers@2019-07-01'" + "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2016-10-02'" } }, { - "label": "'Microsoft.Cache/Redis/patchSchedules@2016-04-01'", + "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2017-04-02'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/patchSchedules` \nAPI Version: `2016-04-01`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2017-04-02`" }, "deprecated": false, "preselect": false, - "sortText": "000001ef", + "sortText": "000001ed", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/patchSchedules@2016-04-01'" + "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2017-04-02'" } }, { - "label": "'Microsoft.Cache/Redis/patchSchedules@2017-02-01'", + "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2017-10-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/patchSchedules` \nAPI Version: `2017-02-01`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2017-10-12`" }, "deprecated": false, "preselect": false, - "sortText": "000001ee", + "sortText": "000001ec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/patchSchedules@2017-02-01'" + "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2017-10-12'" } }, { - "label": "'Microsoft.Cache/Redis/patchSchedules@2017-10-01'", + "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-04-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/patchSchedules` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2019-04-15`" }, "deprecated": false, "preselect": false, - "sortText": "000001ed", + "sortText": "000001eb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/patchSchedules@2017-10-01'" + "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-04-15'" } }, { - "label": "'Microsoft.Cache/Redis/patchSchedules@2018-03-01'", + "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/patchSchedules` \nAPI Version: `2018-03-01`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2019-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "000001ec", + "sortText": "000001ea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/patchSchedules@2018-03-01'" + "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-06-15'" } }, { - "label": "'Microsoft.Cache/Redis/patchSchedules@2019-07-01'", + "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-06-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis/patchSchedules` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2019-06-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001eb", + "sortText": "000001e9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis/patchSchedules@2019-07-01'" + "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-06-15-preview'" } }, { - "label": "'Microsoft.Cache/Redis@2015-08-01'", + "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-12-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis` \nAPI Version: `2015-08-01`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2019-12-31`" }, "deprecated": false, "preselect": false, - "sortText": "000001e1", + "sortText": "000001e8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis@2015-08-01'" + "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-12-31'" } }, { - "label": "'Microsoft.Cache/Redis@2016-04-01'", + "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2020-04-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis` \nAPI Version: `2016-04-01`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2020-04-15`" }, "deprecated": false, "preselect": false, - "sortText": "000001e0", + "sortText": "000001e7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis@2016-04-01'" + "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2020-04-15'" } }, { - "label": "'Microsoft.Cache/Redis@2017-02-01'", + "label": "'Microsoft.Cdn/profiles/endpoints/originGroups@2019-12-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis` \nAPI Version: `2017-02-01`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/originGroups` \nAPI Version: `2019-12-31`" }, "deprecated": false, "preselect": false, - "sortText": "000001df", + "sortText": "000001f2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis@2017-02-01'" + "newText": "'Microsoft.Cdn/profiles/endpoints/originGroups@2019-12-31'" } }, { - "label": "'Microsoft.Cache/Redis@2017-10-01'", + "label": "'Microsoft.Cdn/profiles/endpoints/originGroups@2020-04-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/originGroups` \nAPI Version: `2020-04-15`" }, "deprecated": false, "preselect": false, - "sortText": "000001de", + "sortText": "000001f1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis@2017-10-01'" + "newText": "'Microsoft.Cdn/profiles/endpoints/originGroups@2020-04-15'" } }, { - "label": "'Microsoft.Cache/Redis@2018-03-01'", + "label": "'Microsoft.Cdn/profiles/endpoints/origins@2015-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis` \nAPI Version: `2018-03-01`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/origins` \nAPI Version: `2015-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001dd", + "sortText": "000001f6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis@2018-03-01'" + "newText": "'Microsoft.Cdn/profiles/endpoints/origins@2015-06-01'" } }, { - "label": "'Microsoft.Cache/Redis@2019-07-01'", + "label": "'Microsoft.Cdn/profiles/endpoints/origins@2016-04-02'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `Redis` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/origins` \nAPI Version: `2016-04-02`" }, "deprecated": false, "preselect": false, - "sortText": "000001dc", + "sortText": "000001f5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/Redis@2019-07-01'" + "newText": "'Microsoft.Cdn/profiles/endpoints/origins@2016-04-02'" } }, { - "label": "'Microsoft.Cache/redisEnterprise/databases@2020-10-01-preview'", + "label": "'Microsoft.Cdn/profiles/endpoints/origins@2019-12-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `redisEnterprise/databases` \nAPI Version: `2020-10-01-preview`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/origins` \nAPI Version: `2019-12-31`" }, "deprecated": false, "preselect": false, - "sortText": "000001f1", + "sortText": "000001f4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/redisEnterprise/databases@2020-10-01-preview'" + "newText": "'Microsoft.Cdn/profiles/endpoints/origins@2019-12-31'" } }, { - "label": "'Microsoft.Cache/redisEnterprise/privateEndpointConnections@2020-10-01-preview'", + "label": "'Microsoft.Cdn/profiles/endpoints/origins@2020-04-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `redisEnterprise/privateEndpointConnections` \nAPI Version: `2020-10-01-preview`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/origins` \nAPI Version: `2020-04-15`" }, "deprecated": false, "preselect": false, - "sortText": "000001f2", + "sortText": "000001f3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/redisEnterprise/privateEndpointConnections@2020-10-01-preview'" + "newText": "'Microsoft.Cdn/profiles/endpoints/origins@2020-04-15'" } }, { - "label": "'Microsoft.Cache/redisEnterprise@2020-10-01-preview'", + "label": "'Microsoft.Cdn/profiles/endpoints@2015-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cache` \nType: `redisEnterprise` \nAPI Version: `2020-10-01-preview`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints` \nAPI Version: `2015-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001f0", + "sortText": "000001e6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cache/redisEnterprise@2020-10-01-preview'" + "newText": "'Microsoft.Cdn/profiles/endpoints@2015-06-01'" } }, { - "label": "'Microsoft.Capacity/reservationOrders@2019-04-01'", + "label": "'Microsoft.Cdn/profiles/endpoints@2016-04-02'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Capacity` \nType: `reservationOrders` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints` \nAPI Version: `2016-04-02`" }, "deprecated": false, "preselect": false, - "sortText": "000001f3", + "sortText": "000001e5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Capacity/reservationOrders@2019-04-01'" + "newText": "'Microsoft.Cdn/profiles/endpoints@2016-04-02'" } }, { - "label": "'Microsoft.Capacity/resourceProviders/locations/serviceLimits@2019-07-19-preview'", + "label": "'Microsoft.Cdn/profiles/endpoints@2016-10-02'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Capacity` \nType: `resourceProviders/locations/serviceLimits` \nAPI Version: `2019-07-19-preview`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints` \nAPI Version: `2016-10-02`" }, "deprecated": false, "preselect": false, - "sortText": "000001f4", + "sortText": "000001e4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Capacity/resourceProviders/locations/serviceLimits@2019-07-19-preview'" + "newText": "'Microsoft.Cdn/profiles/endpoints@2016-10-02'" } }, { - "label": "'Microsoft.Cdn/CdnWebApplicationFirewallPolicies@2019-06-15'", + "label": "'Microsoft.Cdn/profiles/endpoints@2017-04-02'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `CdnWebApplicationFirewallPolicies` \nAPI Version: `2019-06-15`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints` \nAPI Version: `2017-04-02`" }, "deprecated": false, "preselect": false, - "sortText": "000001f7", + "sortText": "000001e3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/CdnWebApplicationFirewallPolicies@2019-06-15'" + "newText": "'Microsoft.Cdn/profiles/endpoints@2017-04-02'" } }, { - "label": "'Microsoft.Cdn/CdnWebApplicationFirewallPolicies@2019-06-15-preview'", + "label": "'Microsoft.Cdn/profiles/endpoints@2017-10-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `CdnWebApplicationFirewallPolicies` \nAPI Version: `2019-06-15-preview`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints` \nAPI Version: `2017-10-12`" }, "deprecated": false, "preselect": false, - "sortText": "000001f6", + "sortText": "000001e2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/CdnWebApplicationFirewallPolicies@2019-06-15-preview'" + "newText": "'Microsoft.Cdn/profiles/endpoints@2017-10-12'" } }, { - "label": "'Microsoft.Cdn/CdnWebApplicationFirewallPolicies@2020-04-15'", + "label": "'Microsoft.Cdn/profiles/endpoints@2019-04-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `CdnWebApplicationFirewallPolicies` \nAPI Version: `2020-04-15`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints` \nAPI Version: `2019-04-15`" }, "deprecated": false, "preselect": false, - "sortText": "000001f5", + "sortText": "000001e1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/CdnWebApplicationFirewallPolicies@2020-04-15'" + "newText": "'Microsoft.Cdn/profiles/endpoints@2019-04-15'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2015-06-01'", + "label": "'Microsoft.Cdn/profiles/endpoints@2019-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2015-06-01`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints` \nAPI Version: `2019-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000215", + "sortText": "000001e0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2015-06-01'" + "newText": "'Microsoft.Cdn/profiles/endpoints@2019-06-15'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2016-04-02'", + "label": "'Microsoft.Cdn/profiles/endpoints@2019-06-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2016-04-02`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints` \nAPI Version: `2019-06-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000214", + "sortText": "000001df", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2016-04-02'" + "newText": "'Microsoft.Cdn/profiles/endpoints@2019-06-15-preview'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2016-10-02'", + "label": "'Microsoft.Cdn/profiles/endpoints@2019-12-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2016-10-02`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints` \nAPI Version: `2019-12-31`" }, "deprecated": false, "preselect": false, - "sortText": "00000213", + "sortText": "000001de", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2016-10-02'" + "newText": "'Microsoft.Cdn/profiles/endpoints@2019-12-31'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2017-04-02'", + "label": "'Microsoft.Cdn/profiles/endpoints@2020-04-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2017-04-02`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints` \nAPI Version: `2020-04-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000212", + "sortText": "000001dd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2017-04-02'" + "newText": "'Microsoft.Cdn/profiles/endpoints@2020-04-15'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2017-10-12'", + "label": "'Microsoft.Cdn/profiles@2015-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2017-10-12`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles` \nAPI Version: `2015-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000211", + "sortText": "000001dc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2017-10-12'" + "newText": "'Microsoft.Cdn/profiles@2015-06-01'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-04-15'", + "label": "'Microsoft.Cdn/profiles@2016-04-02'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2019-04-15`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles` \nAPI Version: `2016-04-02`" }, "deprecated": false, "preselect": false, - "sortText": "00000210", + "sortText": "000001db", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-04-15'" + "newText": "'Microsoft.Cdn/profiles@2016-04-02'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-06-15'", + "label": "'Microsoft.Cdn/profiles@2016-10-02'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2019-06-15`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles` \nAPI Version: `2016-10-02`" }, "deprecated": false, "preselect": false, - "sortText": "0000020f", + "sortText": "000001da", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-06-15'" + "newText": "'Microsoft.Cdn/profiles@2016-10-02'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-06-15-preview'", + "label": "'Microsoft.Cdn/profiles@2017-04-02'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2019-06-15-preview`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles` \nAPI Version: `2017-04-02`" }, "deprecated": false, "preselect": false, - "sortText": "0000020e", + "sortText": "000001d9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-06-15-preview'" + "newText": "'Microsoft.Cdn/profiles@2017-04-02'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-12-31'", + "label": "'Microsoft.Cdn/profiles@2017-10-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2019-12-31`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles` \nAPI Version: `2017-10-12`" }, "deprecated": false, "preselect": false, - "sortText": "0000020d", + "sortText": "000001d8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2019-12-31'" + "newText": "'Microsoft.Cdn/profiles@2017-10-12'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/customDomains@2020-04-15'", + "label": "'Microsoft.Cdn/profiles@2019-04-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/customDomains` \nAPI Version: `2020-04-15`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles` \nAPI Version: `2019-04-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000020c", + "sortText": "000001d7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/customDomains@2020-04-15'" + "newText": "'Microsoft.Cdn/profiles@2019-04-15'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/originGroups@2019-12-31'", + "label": "'Microsoft.Cdn/profiles@2019-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/originGroups` \nAPI Version: `2019-12-31`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles` \nAPI Version: `2019-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000217", + "sortText": "000001d6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/originGroups@2019-12-31'" + "newText": "'Microsoft.Cdn/profiles@2019-06-15'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/originGroups@2020-04-15'", + "label": "'Microsoft.Cdn/profiles@2019-06-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/originGroups` \nAPI Version: `2020-04-15`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles` \nAPI Version: `2019-06-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000216", + "sortText": "000001d5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/originGroups@2020-04-15'" + "newText": "'Microsoft.Cdn/profiles@2019-06-15-preview'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/origins@2015-06-01'", + "label": "'Microsoft.Cdn/profiles@2019-12-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/origins` \nAPI Version: `2015-06-01`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles` \nAPI Version: `2019-12-31`" }, "deprecated": false, "preselect": false, - "sortText": "0000021b", + "sortText": "000001d4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/origins@2015-06-01'" + "newText": "'Microsoft.Cdn/profiles@2019-12-31'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/origins@2016-04-02'", + "label": "'Microsoft.Cdn/profiles@2020-04-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/origins` \nAPI Version: `2016-04-02`" + "value": "Namespace: `Microsoft.Cdn` \nType: `profiles` \nAPI Version: `2020-04-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000021a", + "sortText": "000001d3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/origins@2016-04-02'" + "newText": "'Microsoft.Cdn/profiles@2020-04-15'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/origins@2019-12-31'", + "label": "'Microsoft.CertificateRegistration/certificateOrders/certificates@2015-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/origins` \nAPI Version: `2019-12-31`" + "value": "Namespace: `Microsoft.CertificateRegistration` \nType: `certificateOrders/certificates` \nAPI Version: `2015-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000219", + "sortText": "000001fe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/origins@2019-12-31'" + "newText": "'Microsoft.CertificateRegistration/certificateOrders/certificates@2015-08-01'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints/origins@2020-04-15'", + "label": "'Microsoft.CertificateRegistration/certificateOrders/certificates@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints/origins` \nAPI Version: `2020-04-15`" + "value": "Namespace: `Microsoft.CertificateRegistration` \nType: `certificateOrders/certificates` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000218", + "sortText": "000001fd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints/origins@2020-04-15'" + "newText": "'Microsoft.CertificateRegistration/certificateOrders/certificates@2018-02-01'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints@2015-06-01'", + "label": "'Microsoft.CertificateRegistration/certificateOrders/certificates@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints` \nAPI Version: `2015-06-01`" + "value": "Namespace: `Microsoft.CertificateRegistration` \nType: `certificateOrders/certificates` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000020b", + "sortText": "000001fc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints@2015-06-01'" + "newText": "'Microsoft.CertificateRegistration/certificateOrders/certificates@2019-08-01'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints@2016-04-02'", + "label": "'Microsoft.CertificateRegistration/certificateOrders/certificates@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints` \nAPI Version: `2016-04-02`" + "value": "Namespace: `Microsoft.CertificateRegistration` \nType: `certificateOrders/certificates` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000020a", + "sortText": "000001fb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints@2016-04-02'" + "newText": "'Microsoft.CertificateRegistration/certificateOrders/certificates@2020-06-01'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints@2016-10-02'", + "label": "'Microsoft.CertificateRegistration/certificateOrders@2015-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints` \nAPI Version: `2016-10-02`" + "value": "Namespace: `Microsoft.CertificateRegistration` \nType: `certificateOrders` \nAPI Version: `2015-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000209", + "sortText": "000001fa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints@2016-10-02'" + "newText": "'Microsoft.CertificateRegistration/certificateOrders@2015-08-01'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints@2017-04-02'", + "label": "'Microsoft.CertificateRegistration/certificateOrders@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints` \nAPI Version: `2017-04-02`" + "value": "Namespace: `Microsoft.CertificateRegistration` \nType: `certificateOrders` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000208", + "sortText": "000001f9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints@2017-04-02'" + "newText": "'Microsoft.CertificateRegistration/certificateOrders@2018-02-01'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints@2017-10-12'", + "label": "'Microsoft.CertificateRegistration/certificateOrders@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints` \nAPI Version: `2017-10-12`" + "value": "Namespace: `Microsoft.CertificateRegistration` \nType: `certificateOrders` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000207", + "sortText": "000001f8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints@2017-10-12'" + "newText": "'Microsoft.CertificateRegistration/certificateOrders@2019-08-01'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints@2019-04-15'", + "label": "'Microsoft.CertificateRegistration/certificateOrders@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints` \nAPI Version: `2019-04-15`" + "value": "Namespace: `Microsoft.CertificateRegistration` \nType: `certificateOrders` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000206", + "sortText": "000001f7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints@2019-04-15'" + "newText": "'Microsoft.CertificateRegistration/certificateOrders@2020-06-01'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints@2019-06-15'", + "label": "'Microsoft.CognitiveServices/accounts/privateEndpointConnections@2017-04-18'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints` \nAPI Version: `2019-06-15`" + "value": "Namespace: `Microsoft.CognitiveServices` \nType: `accounts/privateEndpointConnections` \nAPI Version: `2017-04-18`" }, "deprecated": false, "preselect": false, - "sortText": "00000205", + "sortText": "00000201", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints@2019-06-15'" + "newText": "'Microsoft.CognitiveServices/accounts/privateEndpointConnections@2017-04-18'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints@2019-06-15-preview'", + "label": "'Microsoft.CognitiveServices/accounts@2016-02-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints` \nAPI Version: `2019-06-15-preview`" + "value": "Namespace: `Microsoft.CognitiveServices` \nType: `accounts` \nAPI Version: `2016-02-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000204", + "sortText": "00000200", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints@2019-06-15-preview'" + "newText": "'Microsoft.CognitiveServices/accounts@2016-02-01-preview'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints@2019-12-31'", + "label": "'Microsoft.CognitiveServices/accounts@2017-04-18'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints` \nAPI Version: `2019-12-31`" + "value": "Namespace: `Microsoft.CognitiveServices` \nType: `accounts` \nAPI Version: `2017-04-18`" }, "deprecated": false, "preselect": false, - "sortText": "00000203", + "sortText": "000001ff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints@2019-12-31'" + "newText": "'Microsoft.CognitiveServices/accounts@2017-04-18'" } }, { - "label": "'Microsoft.Cdn/profiles/endpoints@2020-04-15'", + "label": "'Microsoft.Communication/communicationServices@2020-08-20-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles/endpoints` \nAPI Version: `2020-04-15`" + "value": "Namespace: `Microsoft.Communication` \nType: `communicationServices` \nAPI Version: `2020-08-20-preview`" }, "deprecated": false, "preselect": false, @@ -8921,627 +8683,525 @@ "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles/endpoints@2020-04-15'" + "newText": "'Microsoft.Communication/communicationServices@2020-08-20-preview'" } }, { - "label": "'Microsoft.Cdn/profiles@2015-06-01'", + "label": "'Microsoft.Compute/availabilitySets@2015-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles` \nAPI Version: `2015-06-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `availabilitySets` \nAPI Version: `2015-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000201", + "sortText": "0000020e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles@2015-06-01'" + "newText": "'Microsoft.Compute/availabilitySets@2015-06-15'" } }, { - "label": "'Microsoft.Cdn/profiles@2016-04-02'", + "label": "'Microsoft.Compute/availabilitySets@2016-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles` \nAPI Version: `2016-04-02`" + "value": "Namespace: `Microsoft.Compute` \nType: `availabilitySets` \nAPI Version: `2016-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "00000200", + "sortText": "0000020d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles@2016-04-02'" + "newText": "'Microsoft.Compute/availabilitySets@2016-03-30'" } }, { - "label": "'Microsoft.Cdn/profiles@2016-10-02'", + "label": "'Microsoft.Compute/availabilitySets@2016-04-30-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles` \nAPI Version: `2016-10-02`" + "value": "Namespace: `Microsoft.Compute` \nType: `availabilitySets` \nAPI Version: `2016-04-30-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000001ff", + "sortText": "0000020c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles@2016-10-02'" + "newText": "'Microsoft.Compute/availabilitySets@2016-04-30-preview'" } }, { - "label": "'Microsoft.Cdn/profiles@2017-04-02'", + "label": "'Microsoft.Compute/availabilitySets@2017-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles` \nAPI Version: `2017-04-02`" + "value": "Namespace: `Microsoft.Compute` \nType: `availabilitySets` \nAPI Version: `2017-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "000001fe", + "sortText": "0000020b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles@2017-04-02'" + "newText": "'Microsoft.Compute/availabilitySets@2017-03-30'" } }, { - "label": "'Microsoft.Cdn/profiles@2017-10-12'", + "label": "'Microsoft.Compute/availabilitySets@2017-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles` \nAPI Version: `2017-10-12`" + "value": "Namespace: `Microsoft.Compute` \nType: `availabilitySets` \nAPI Version: `2017-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001fd", + "sortText": "0000020a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles@2017-10-12'" + "newText": "'Microsoft.Compute/availabilitySets@2017-12-01'" } }, { - "label": "'Microsoft.Cdn/profiles@2019-04-15'", + "label": "'Microsoft.Compute/availabilitySets@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles` \nAPI Version: `2019-04-15`" + "value": "Namespace: `Microsoft.Compute` \nType: `availabilitySets` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001fc", + "sortText": "00000209", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles@2019-04-15'" + "newText": "'Microsoft.Compute/availabilitySets@2018-04-01'" } }, { - "label": "'Microsoft.Cdn/profiles@2019-06-15'", + "label": "'Microsoft.Compute/availabilitySets@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles` \nAPI Version: `2019-06-15`" + "value": "Namespace: `Microsoft.Compute` \nType: `availabilitySets` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001fb", + "sortText": "00000208", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles@2019-06-15'" + "newText": "'Microsoft.Compute/availabilitySets@2018-06-01'" } }, { - "label": "'Microsoft.Cdn/profiles@2019-06-15-preview'", + "label": "'Microsoft.Compute/availabilitySets@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles` \nAPI Version: `2019-06-15-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `availabilitySets` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001fa", + "sortText": "00000207", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles@2019-06-15-preview'" + "newText": "'Microsoft.Compute/availabilitySets@2018-10-01'" } }, { - "label": "'Microsoft.Cdn/profiles@2019-12-31'", + "label": "'Microsoft.Compute/availabilitySets@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles` \nAPI Version: `2019-12-31`" + "value": "Namespace: `Microsoft.Compute` \nType: `availabilitySets` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001f9", + "sortText": "00000206", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles@2019-12-31'" + "newText": "'Microsoft.Compute/availabilitySets@2019-03-01'" } }, { - "label": "'Microsoft.Cdn/profiles@2020-04-15'", + "label": "'Microsoft.Compute/availabilitySets@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Cdn` \nType: `profiles` \nAPI Version: `2020-04-15`" + "value": "Namespace: `Microsoft.Compute` \nType: `availabilitySets` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000001f8", + "sortText": "00000205", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Cdn/profiles@2020-04-15'" + "newText": "'Microsoft.Compute/availabilitySets@2019-07-01'" } }, { - "label": "'Microsoft.CertificateRegistration/certificateOrders/certificates@2015-08-01'", + "label": "'Microsoft.Compute/availabilitySets@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CertificateRegistration` \nType: `certificateOrders/certificates` \nAPI Version: `2015-08-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `availabilitySets` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000223", + "sortText": "00000204", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CertificateRegistration/certificateOrders/certificates@2015-08-01'" + "newText": "'Microsoft.Compute/availabilitySets@2019-12-01'" } }, { - "label": "'Microsoft.CertificateRegistration/certificateOrders/certificates@2018-02-01'", + "label": "'Microsoft.Compute/availabilitySets@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CertificateRegistration` \nType: `certificateOrders/certificates` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `availabilitySets` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000222", + "sortText": "00000203", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CertificateRegistration/certificateOrders/certificates@2018-02-01'" + "newText": "'Microsoft.Compute/availabilitySets@2020-06-01'" } }, { - "label": "'Microsoft.CertificateRegistration/certificateOrders/certificates@2019-08-01'", + "label": "'Microsoft.Compute/cloudServices/updateDomains@2020-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CertificateRegistration` \nType: `certificateOrders/certificates` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `cloudServices/updateDomains` \nAPI Version: `2020-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000221", + "sortText": "00000210", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CertificateRegistration/certificateOrders/certificates@2019-08-01'" + "newText": "'Microsoft.Compute/cloudServices/updateDomains@2020-10-01-preview'" } }, { - "label": "'Microsoft.CertificateRegistration/certificateOrders/certificates@2020-06-01'", + "label": "'Microsoft.Compute/cloudServices@2020-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CertificateRegistration` \nType: `certificateOrders/certificates` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `cloudServices` \nAPI Version: `2020-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000220", + "sortText": "0000020f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CertificateRegistration/certificateOrders/certificates@2020-06-01'" + "newText": "'Microsoft.Compute/cloudServices@2020-10-01-preview'" } }, { - "label": "'Microsoft.CertificateRegistration/certificateOrders@2015-08-01'", + "label": "'Microsoft.Compute/diskAccesses@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CertificateRegistration` \nType: `certificateOrders` \nAPI Version: `2015-08-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `diskAccesses` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000021f", + "sortText": "00000212", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CertificateRegistration/certificateOrders@2015-08-01'" + "newText": "'Microsoft.Compute/diskAccesses@2020-05-01'" } }, { - "label": "'Microsoft.CertificateRegistration/certificateOrders@2018-02-01'", + "label": "'Microsoft.Compute/diskAccesses@2020-06-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CertificateRegistration` \nType: `certificateOrders` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `diskAccesses` \nAPI Version: `2020-06-30`" }, "deprecated": false, "preselect": false, - "sortText": "0000021e", + "sortText": "00000211", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CertificateRegistration/certificateOrders@2018-02-01'" + "newText": "'Microsoft.Compute/diskAccesses@2020-06-30'" } }, { - "label": "'Microsoft.CertificateRegistration/certificateOrders@2019-08-01'", + "label": "'Microsoft.Compute/diskEncryptionSets@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CertificateRegistration` \nType: `certificateOrders` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `diskEncryptionSets` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000021d", + "sortText": "00000216", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CertificateRegistration/certificateOrders@2019-08-01'" + "newText": "'Microsoft.Compute/diskEncryptionSets@2019-07-01'" } }, { - "label": "'Microsoft.CertificateRegistration/certificateOrders@2020-06-01'", + "label": "'Microsoft.Compute/diskEncryptionSets@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CertificateRegistration` \nType: `certificateOrders` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `diskEncryptionSets` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000021c", + "sortText": "00000215", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CertificateRegistration/certificateOrders@2020-06-01'" + "newText": "'Microsoft.Compute/diskEncryptionSets@2019-11-01'" } }, { - "label": "'Microsoft.ChangeAnalysis/profile@2020-04-01-preview'", + "label": "'Microsoft.Compute/diskEncryptionSets@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ChangeAnalysis` \nType: `profile` \nAPI Version: `2020-04-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `diskEncryptionSets` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000224", + "sortText": "00000214", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ChangeAnalysis/profile@2020-04-01-preview'" + "newText": "'Microsoft.Compute/diskEncryptionSets@2020-05-01'" } }, { - "label": "'Microsoft.CognitiveServices/accounts/privateEndpointConnections@2017-04-18'", + "label": "'Microsoft.Compute/diskEncryptionSets@2020-06-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CognitiveServices` \nType: `accounts/privateEndpointConnections` \nAPI Version: `2017-04-18`" + "value": "Namespace: `Microsoft.Compute` \nType: `diskEncryptionSets` \nAPI Version: `2020-06-30`" }, "deprecated": false, "preselect": false, - "sortText": "00000227", + "sortText": "00000213", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CognitiveServices/accounts/privateEndpointConnections@2017-04-18'" + "newText": "'Microsoft.Compute/diskEncryptionSets@2020-06-30'" } }, { - "label": "'Microsoft.CognitiveServices/accounts@2016-02-01-preview'", + "label": "'Microsoft.Compute/disks@2016-04-30-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CognitiveServices` \nType: `accounts` \nAPI Version: `2016-02-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `disks` \nAPI Version: `2016-04-30-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000226", + "sortText": "00000220", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CognitiveServices/accounts@2016-02-01-preview'" + "newText": "'Microsoft.Compute/disks@2016-04-30-preview'" } }, { - "label": "'Microsoft.CognitiveServices/accounts@2017-04-18'", + "label": "'Microsoft.Compute/disks@2017-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CognitiveServices` \nType: `accounts` \nAPI Version: `2017-04-18`" + "value": "Namespace: `Microsoft.Compute` \nType: `disks` \nAPI Version: `2017-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "00000225", + "sortText": "0000021f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CognitiveServices/accounts@2017-04-18'" + "newText": "'Microsoft.Compute/disks@2017-03-30'" } }, { - "label": "'Microsoft.Communication/communicationServices@2020-08-20-preview'", + "label": "'Microsoft.Compute/disks@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Communication` \nType: `communicationServices` \nAPI Version: `2020-08-20-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `disks` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000228", + "sortText": "0000021e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Communication/communicationServices@2020-08-20-preview'" + "newText": "'Microsoft.Compute/disks@2018-04-01'" } }, { - "label": "'Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions@2015-12-01-preview'", + "label": "'Microsoft.Compute/disks@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute.Admin` \nType: `locations/artifactTypes/publishers/offers/skus/versions` \nAPI Version: `2015-12-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `disks` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000229", + "sortText": "0000021d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute.Admin/locations/artifactTypes/publishers/offers/skus/versions@2015-12-01-preview'" + "newText": "'Microsoft.Compute/disks@2018-06-01'" } }, { - "label": "'Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions@2015-12-01-preview'", + "label": "'Microsoft.Compute/disks@2018-09-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute.Admin` \nType: `locations/artifactTypes/publishers/types/versions` \nAPI Version: `2015-12-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `disks` \nAPI Version: `2018-09-30`" }, "deprecated": false, "preselect": false, - "sortText": "0000022a", + "sortText": "0000021c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute.Admin/locations/artifactTypes/publishers/types/versions@2015-12-01-preview'" + "newText": "'Microsoft.Compute/disks@2018-09-30'" } }, { - "label": "'Microsoft.Compute.Admin/locations/quotas@2018-02-09'", + "label": "'Microsoft.Compute/disks@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute.Admin` \nType: `locations/quotas` \nAPI Version: `2018-02-09`" + "value": "Namespace: `Microsoft.Compute` \nType: `disks` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000022b", + "sortText": "0000021b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute.Admin/locations/quotas@2018-02-09'" + "newText": "'Microsoft.Compute/disks@2019-03-01'" } }, { - "label": "'Microsoft.Compute/availabilitySets@2015-06-15'", + "label": "'Microsoft.Compute/disks@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `availabilitySets` \nAPI Version: `2015-06-15`" + "value": "Namespace: `Microsoft.Compute` \nType: `disks` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000237", + "sortText": "0000021a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/availabilitySets@2015-06-15'" + "newText": "'Microsoft.Compute/disks@2019-07-01'" } }, { - "label": "'Microsoft.Compute/availabilitySets@2016-03-30'", + "label": "'Microsoft.Compute/disks@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `availabilitySets` \nAPI Version: `2016-03-30`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000236", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/availabilitySets@2016-03-30'" - } - }, - { - "label": "'Microsoft.Compute/availabilitySets@2016-04-30-preview'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `availabilitySets` \nAPI Version: `2016-04-30-preview`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000235", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/availabilitySets@2016-04-30-preview'" - } - }, - { - "label": "'Microsoft.Compute/availabilitySets@2017-03-30'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `availabilitySets` \nAPI Version: `2017-03-30`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000234", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/availabilitySets@2017-03-30'" - } - }, - { - "label": "'Microsoft.Compute/availabilitySets@2017-12-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `availabilitySets` \nAPI Version: `2017-12-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000233", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/availabilitySets@2017-12-01'" - } - }, - { - "label": "'Microsoft.Compute/availabilitySets@2018-04-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `availabilitySets` \nAPI Version: `2018-04-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000232", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/availabilitySets@2018-04-01'" - } - }, - { - "label": "'Microsoft.Compute/availabilitySets@2018-06-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `availabilitySets` \nAPI Version: `2018-06-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000231", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/availabilitySets@2018-06-01'" - } - }, - { - "label": "'Microsoft.Compute/availabilitySets@2018-10-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `availabilitySets` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `disks` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000230", + "sortText": "00000219", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/availabilitySets@2018-10-01'" + "newText": "'Microsoft.Compute/disks@2019-11-01'" } }, { - "label": "'Microsoft.Compute/availabilitySets@2019-03-01'", + "label": "'Microsoft.Compute/disks@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `availabilitySets` \nAPI Version: `2019-03-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `disks` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000022f", + "sortText": "00000218", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/availabilitySets@2019-03-01'" + "newText": "'Microsoft.Compute/disks@2020-05-01'" } }, { - "label": "'Microsoft.Compute/availabilitySets@2019-07-01'", + "label": "'Microsoft.Compute/disks@2020-06-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `availabilitySets` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `disks` \nAPI Version: `2020-06-30`" }, "deprecated": false, "preselect": false, - "sortText": "0000022e", + "sortText": "00000217", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/availabilitySets@2019-07-01'" + "newText": "'Microsoft.Compute/disks@2020-06-30'" } }, { - "label": "'Microsoft.Compute/availabilitySets@2019-12-01'", + "label": "'Microsoft.Compute/galleries/applications/versions@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `availabilitySets` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `galleries/applications/versions` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, @@ -9550,15 +9210,15 @@ "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/availabilitySets@2019-12-01'" + "newText": "'Microsoft.Compute/galleries/applications/versions@2019-03-01'" } }, { - "label": "'Microsoft.Compute/availabilitySets@2020-06-01'", + "label": "'Microsoft.Compute/galleries/applications/versions@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `availabilitySets` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `galleries/applications/versions` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, @@ -9567,49460 +9227,48015 @@ "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/availabilitySets@2020-06-01'" - } - }, - { - "label": "'Microsoft.Compute/cloudServices/updateDomains@2020-10-01-preview'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `cloudServices/updateDomains` \nAPI Version: `2020-10-01-preview`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000239", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/cloudServices/updateDomains@2020-10-01-preview'" - } - }, - { - "label": "'Microsoft.Compute/cloudServices@2020-10-01-preview'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `cloudServices` \nAPI Version: `2020-10-01-preview`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000238", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/cloudServices@2020-10-01-preview'" - } - }, - { - "label": "'Microsoft.Compute/diskAccesses@2020-05-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `diskAccesses` \nAPI Version: `2020-05-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "0000023b", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/diskAccesses@2020-05-01'" + "newText": "'Microsoft.Compute/galleries/applications/versions@2019-07-01'" } }, { - "label": "'Microsoft.Compute/diskAccesses@2020-06-30'", + "label": "'Microsoft.Compute/galleries/applications/versions@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `diskAccesses` \nAPI Version: `2020-06-30`" + "value": "Namespace: `Microsoft.Compute` \nType: `galleries/applications/versions` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000023a", + "sortText": "0000022b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/diskAccesses@2020-06-30'" + "newText": "'Microsoft.Compute/galleries/applications/versions@2019-12-01'" } }, { - "label": "'Microsoft.Compute/diskEncryptionSets@2019-07-01'", + "label": "'Microsoft.Compute/galleries/applications/versions@2020-09-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `diskEncryptionSets` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `galleries/applications/versions` \nAPI Version: `2020-09-30`" }, "deprecated": false, "preselect": false, - "sortText": "0000023f", + "sortText": "0000022a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/diskEncryptionSets@2019-07-01'" + "newText": "'Microsoft.Compute/galleries/applications/versions@2020-09-30'" } }, { - "label": "'Microsoft.Compute/diskEncryptionSets@2019-11-01'", + "label": "'Microsoft.Compute/galleries/applications@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `diskEncryptionSets` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `galleries/applications` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000023e", + "sortText": "00000229", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/diskEncryptionSets@2019-11-01'" + "newText": "'Microsoft.Compute/galleries/applications@2019-03-01'" } }, { - "label": "'Microsoft.Compute/diskEncryptionSets@2020-05-01'", + "label": "'Microsoft.Compute/galleries/applications@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `diskEncryptionSets` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `galleries/applications` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000023d", + "sortText": "00000228", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/diskEncryptionSets@2020-05-01'" + "newText": "'Microsoft.Compute/galleries/applications@2019-07-01'" } }, { - "label": "'Microsoft.Compute/diskEncryptionSets@2020-06-30'", + "label": "'Microsoft.Compute/galleries/applications@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `diskEncryptionSets` \nAPI Version: `2020-06-30`" + "value": "Namespace: `Microsoft.Compute` \nType: `galleries/applications` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000023c", + "sortText": "00000227", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/diskEncryptionSets@2020-06-30'" + "newText": "'Microsoft.Compute/galleries/applications@2019-12-01'" } }, { - "label": "'Microsoft.Compute/disks@2016-04-30-preview'", + "label": "'Microsoft.Compute/galleries/applications@2020-09-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `disks` \nAPI Version: `2016-04-30-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `galleries/applications` \nAPI Version: `2020-09-30`" }, "deprecated": false, "preselect": false, - "sortText": "00000249", + "sortText": "00000226", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/disks@2016-04-30-preview'" + "newText": "'Microsoft.Compute/galleries/applications@2020-09-30'" } }, { - "label": "'Microsoft.Compute/disks@2017-03-30'", + "label": "'Microsoft.Compute/galleries/images/versions@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `disks` \nAPI Version: `2017-03-30`" + "value": "Namespace: `Microsoft.Compute` \nType: `galleries/images/versions` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000248", + "sortText": "00000237", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/disks@2017-03-30'" + "newText": "'Microsoft.Compute/galleries/images/versions@2018-06-01'" } }, { - "label": "'Microsoft.Compute/disks@2018-04-01'", + "label": "'Microsoft.Compute/galleries/images/versions@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `disks` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `galleries/images/versions` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000247", + "sortText": "00000236", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/disks@2018-04-01'" + "newText": "'Microsoft.Compute/galleries/images/versions@2019-03-01'" } }, { - "label": "'Microsoft.Compute/disks@2018-06-01'", + "label": "'Microsoft.Compute/galleries/images/versions@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `disks` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `galleries/images/versions` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000246", + "sortText": "00000235", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/disks@2018-06-01'" + "newText": "'Microsoft.Compute/galleries/images/versions@2019-07-01'" } }, { - "label": "'Microsoft.Compute/disks@2018-09-30'", + "label": "'Microsoft.Compute/galleries/images/versions@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `disks` \nAPI Version: `2018-09-30`" + "value": "Namespace: `Microsoft.Compute` \nType: `galleries/images/versions` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000245", + "sortText": "00000234", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/disks@2018-09-30'" + "newText": "'Microsoft.Compute/galleries/images/versions@2019-12-01'" } }, { - "label": "'Microsoft.Compute/disks@2019-03-01'", + "label": "'Microsoft.Compute/galleries/images/versions@2020-09-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `disks` \nAPI Version: `2019-03-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `galleries/images/versions` \nAPI Version: `2020-09-30`" }, "deprecated": false, "preselect": false, - "sortText": "00000244", + "sortText": "00000233", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/disks@2019-03-01'" + "newText": "'Microsoft.Compute/galleries/images/versions@2020-09-30'" } }, { - "label": "'Microsoft.Compute/disks@2019-07-01'", + "label": "'Microsoft.Compute/galleries/images@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `disks` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `galleries/images` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000243", + "sortText": "00000232", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/disks@2019-07-01'" + "newText": "'Microsoft.Compute/galleries/images@2018-06-01'" } }, { - "label": "'Microsoft.Compute/disks@2019-11-01'", + "label": "'Microsoft.Compute/galleries/images@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `disks` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `galleries/images` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000242", + "sortText": "00000231", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/disks@2019-11-01'" + "newText": "'Microsoft.Compute/galleries/images@2019-03-01'" } }, { - "label": "'Microsoft.Compute/disks@2020-05-01'", + "label": "'Microsoft.Compute/galleries/images@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `disks` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `galleries/images` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000241", + "sortText": "00000230", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/disks@2020-05-01'" + "newText": "'Microsoft.Compute/galleries/images@2019-07-01'" } }, { - "label": "'Microsoft.Compute/disks@2020-06-30'", + "label": "'Microsoft.Compute/galleries/images@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `disks` \nAPI Version: `2020-06-30`" + "value": "Namespace: `Microsoft.Compute` \nType: `galleries/images` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000240", + "sortText": "0000022f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/disks@2020-06-30'" + "newText": "'Microsoft.Compute/galleries/images@2019-12-01'" } }, { - "label": "'Microsoft.Compute/galleries/applications/versions@2019-03-01'", + "label": "'Microsoft.Compute/galleries/images@2020-09-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `galleries/applications/versions` \nAPI Version: `2019-03-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `galleries/images` \nAPI Version: `2020-09-30`" }, "deprecated": false, "preselect": false, - "sortText": "00000256", + "sortText": "0000022e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/galleries/applications/versions@2019-03-01'" + "newText": "'Microsoft.Compute/galleries/images@2020-09-30'" } }, { - "label": "'Microsoft.Compute/galleries/applications/versions@2019-07-01'", + "label": "'Microsoft.Compute/galleries@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `galleries/applications/versions` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `galleries` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000255", + "sortText": "00000225", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/galleries/applications/versions@2019-07-01'" + "newText": "'Microsoft.Compute/galleries@2018-06-01'" } }, { - "label": "'Microsoft.Compute/galleries/applications/versions@2019-12-01'", + "label": "'Microsoft.Compute/galleries@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `galleries/applications/versions` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `galleries` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000254", + "sortText": "00000224", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/galleries/applications/versions@2019-12-01'" + "newText": "'Microsoft.Compute/galleries@2019-03-01'" } }, { - "label": "'Microsoft.Compute/galleries/applications/versions@2020-09-30'", + "label": "'Microsoft.Compute/galleries@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `galleries/applications/versions` \nAPI Version: `2020-09-30`" + "value": "Namespace: `Microsoft.Compute` \nType: `galleries` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000253", + "sortText": "00000223", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/galleries/applications/versions@2020-09-30'" + "newText": "'Microsoft.Compute/galleries@2019-07-01'" } }, { - "label": "'Microsoft.Compute/galleries/applications@2019-03-01'", + "label": "'Microsoft.Compute/galleries@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `galleries/applications` \nAPI Version: `2019-03-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `galleries` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000252", + "sortText": "00000222", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/galleries/applications@2019-03-01'" + "newText": "'Microsoft.Compute/galleries@2019-12-01'" } }, { - "label": "'Microsoft.Compute/galleries/applications@2019-07-01'", + "label": "'Microsoft.Compute/galleries@2020-09-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `galleries/applications` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `galleries` \nAPI Version: `2020-09-30`" }, "deprecated": false, "preselect": false, - "sortText": "00000251", + "sortText": "00000221", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/galleries/applications@2019-07-01'" + "newText": "'Microsoft.Compute/galleries@2020-09-30'" } }, { - "label": "'Microsoft.Compute/galleries/applications@2019-12-01'", + "label": "'Microsoft.Compute/hostGroups/hosts@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `galleries/applications` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `hostGroups/hosts` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000250", + "sortText": "0000023f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/galleries/applications@2019-12-01'" + "newText": "'Microsoft.Compute/hostGroups/hosts@2019-03-01'" } }, { - "label": "'Microsoft.Compute/galleries/applications@2020-09-30'", + "label": "'Microsoft.Compute/hostGroups/hosts@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `galleries/applications` \nAPI Version: `2020-09-30`" + "value": "Namespace: `Microsoft.Compute` \nType: `hostGroups/hosts` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000024f", + "sortText": "0000023e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/galleries/applications@2020-09-30'" + "newText": "'Microsoft.Compute/hostGroups/hosts@2019-07-01'" } }, { - "label": "'Microsoft.Compute/galleries/images/versions@2018-06-01'", + "label": "'Microsoft.Compute/hostGroups/hosts@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `galleries/images/versions` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `hostGroups/hosts` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000260", + "sortText": "0000023d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/galleries/images/versions@2018-06-01'" + "newText": "'Microsoft.Compute/hostGroups/hosts@2019-12-01'" } }, { - "label": "'Microsoft.Compute/galleries/images/versions@2019-03-01'", + "label": "'Microsoft.Compute/hostGroups/hosts@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `galleries/images/versions` \nAPI Version: `2019-03-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `hostGroups/hosts` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000025f", + "sortText": "0000023c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/galleries/images/versions@2019-03-01'" + "newText": "'Microsoft.Compute/hostGroups/hosts@2020-06-01'" } }, { - "label": "'Microsoft.Compute/galleries/images/versions@2019-07-01'", + "label": "'Microsoft.Compute/hostGroups@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `galleries/images/versions` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `hostGroups` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000025e", + "sortText": "0000023b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/galleries/images/versions@2019-07-01'" + "newText": "'Microsoft.Compute/hostGroups@2019-03-01'" } }, { - "label": "'Microsoft.Compute/galleries/images/versions@2019-12-01'", + "label": "'Microsoft.Compute/hostGroups@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `galleries/images/versions` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `hostGroups` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000025d", + "sortText": "0000023a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/galleries/images/versions@2019-12-01'" + "newText": "'Microsoft.Compute/hostGroups@2019-07-01'" } }, { - "label": "'Microsoft.Compute/galleries/images/versions@2020-09-30'", + "label": "'Microsoft.Compute/hostGroups@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `galleries/images/versions` \nAPI Version: `2020-09-30`" + "value": "Namespace: `Microsoft.Compute` \nType: `hostGroups` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000025c", + "sortText": "00000239", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/galleries/images/versions@2020-09-30'" + "newText": "'Microsoft.Compute/hostGroups@2019-12-01'" } }, { - "label": "'Microsoft.Compute/galleries/images@2018-06-01'", + "label": "'Microsoft.Compute/hostGroups@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `galleries/images` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `hostGroups` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000025b", + "sortText": "00000238", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/galleries/images@2018-06-01'" + "newText": "'Microsoft.Compute/hostGroups@2020-06-01'" } }, { - "label": "'Microsoft.Compute/galleries/images@2019-03-01'", + "label": "'Microsoft.Compute/images@2016-04-30-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `galleries/images` \nAPI Version: `2019-03-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `images` \nAPI Version: `2016-04-30-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000025a", + "sortText": "00000249", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/galleries/images@2019-03-01'" + "newText": "'Microsoft.Compute/images@2016-04-30-preview'" } }, { - "label": "'Microsoft.Compute/galleries/images@2019-07-01'", + "label": "'Microsoft.Compute/images@2017-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `galleries/images` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `images` \nAPI Version: `2017-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "00000259", + "sortText": "00000248", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/galleries/images@2019-07-01'" + "newText": "'Microsoft.Compute/images@2017-03-30'" } }, { - "label": "'Microsoft.Compute/galleries/images@2019-12-01'", + "label": "'Microsoft.Compute/images@2017-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `galleries/images` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `images` \nAPI Version: `2017-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000258", + "sortText": "00000247", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/galleries/images@2019-12-01'" + "newText": "'Microsoft.Compute/images@2017-12-01'" } }, { - "label": "'Microsoft.Compute/galleries/images@2020-09-30'", + "label": "'Microsoft.Compute/images@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `galleries/images` \nAPI Version: `2020-09-30`" + "value": "Namespace: `Microsoft.Compute` \nType: `images` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000257", + "sortText": "00000246", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/galleries/images@2020-09-30'" + "newText": "'Microsoft.Compute/images@2018-04-01'" } }, { - "label": "'Microsoft.Compute/galleries@2018-06-01'", + "label": "'Microsoft.Compute/images@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `galleries` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `images` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000024e", + "sortText": "00000245", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/galleries@2018-06-01'" + "newText": "'Microsoft.Compute/images@2018-06-01'" } }, { - "label": "'Microsoft.Compute/galleries@2019-03-01'", + "label": "'Microsoft.Compute/images@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `galleries` \nAPI Version: `2019-03-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `images` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000024d", + "sortText": "00000244", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/galleries@2019-03-01'" + "newText": "'Microsoft.Compute/images@2018-10-01'" } }, { - "label": "'Microsoft.Compute/galleries@2019-07-01'", + "label": "'Microsoft.Compute/images@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `galleries` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `images` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000024c", + "sortText": "00000243", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/galleries@2019-07-01'" + "newText": "'Microsoft.Compute/images@2019-03-01'" } }, { - "label": "'Microsoft.Compute/galleries@2019-12-01'", + "label": "'Microsoft.Compute/images@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `galleries` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `images` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000024b", + "sortText": "00000242", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/galleries@2019-12-01'" + "newText": "'Microsoft.Compute/images@2019-07-01'" } }, { - "label": "'Microsoft.Compute/galleries@2020-09-30'", + "label": "'Microsoft.Compute/images@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `galleries` \nAPI Version: `2020-09-30`" + "value": "Namespace: `Microsoft.Compute` \nType: `images` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000024a", + "sortText": "00000241", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/galleries@2020-09-30'" + "newText": "'Microsoft.Compute/images@2019-12-01'" } }, { - "label": "'Microsoft.Compute/hostGroups/hosts@2019-03-01'", + "label": "'Microsoft.Compute/images@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `hostGroups/hosts` \nAPI Version: `2019-03-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `images` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000268", + "sortText": "00000240", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/hostGroups/hosts@2019-03-01'" + "newText": "'Microsoft.Compute/images@2020-06-01'" } }, { - "label": "'Microsoft.Compute/hostGroups/hosts@2019-07-01'", + "label": "'Microsoft.Compute/proximityPlacementGroups@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `hostGroups/hosts` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `proximityPlacementGroups` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000267", + "sortText": "00000250", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/hostGroups/hosts@2019-07-01'" - } - }, - { - "label": "'Microsoft.Compute/hostGroups/hosts@2019-12-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `hostGroups/hosts` \nAPI Version: `2019-12-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000266", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/hostGroups/hosts@2019-12-01'" - } - }, - { - "label": "'Microsoft.Compute/hostGroups/hosts@2020-06-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `hostGroups/hosts` \nAPI Version: `2020-06-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000265", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/hostGroups/hosts@2020-06-01'" - } - }, - { - "label": "'Microsoft.Compute/hostGroups@2019-03-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `hostGroups` \nAPI Version: `2019-03-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000264", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/hostGroups@2019-03-01'" - } - }, - { - "label": "'Microsoft.Compute/hostGroups@2019-07-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `hostGroups` \nAPI Version: `2019-07-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000263", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/hostGroups@2019-07-01'" - } - }, - { - "label": "'Microsoft.Compute/hostGroups@2019-12-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `hostGroups` \nAPI Version: `2019-12-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000262", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/hostGroups@2019-12-01'" - } - }, - { - "label": "'Microsoft.Compute/hostGroups@2020-06-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `hostGroups` \nAPI Version: `2020-06-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000261", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/hostGroups@2020-06-01'" - } - }, - { - "label": "'Microsoft.Compute/images@2016-04-30-preview'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `images` \nAPI Version: `2016-04-30-preview`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000272", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/images@2016-04-30-preview'" - } - }, - { - "label": "'Microsoft.Compute/images@2017-03-30'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `images` \nAPI Version: `2017-03-30`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000271", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/images@2017-03-30'" - } - }, - { - "label": "'Microsoft.Compute/images@2017-12-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `images` \nAPI Version: `2017-12-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000270", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/images@2017-12-01'" - } - }, - { - "label": "'Microsoft.Compute/images@2018-04-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `images` \nAPI Version: `2018-04-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "0000026f", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/images@2018-04-01'" - } - }, - { - "label": "'Microsoft.Compute/images@2018-06-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `images` \nAPI Version: `2018-06-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "0000026e", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/images@2018-06-01'" - } - }, - { - "label": "'Microsoft.Compute/images@2018-10-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `images` \nAPI Version: `2018-10-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "0000026d", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/images@2018-10-01'" - } - }, - { - "label": "'Microsoft.Compute/images@2019-03-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `images` \nAPI Version: `2019-03-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "0000026c", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/images@2019-03-01'" - } - }, - { - "label": "'Microsoft.Compute/images@2019-07-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `images` \nAPI Version: `2019-07-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "0000026b", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/images@2019-07-01'" - } - }, - { - "label": "'Microsoft.Compute/images@2019-12-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `images` \nAPI Version: `2019-12-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "0000026a", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/images@2019-12-01'" - } - }, - { - "label": "'Microsoft.Compute/images@2020-06-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `images` \nAPI Version: `2020-06-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000269", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/images@2020-06-01'" - } - }, - { - "label": "'Microsoft.Compute/proximityPlacementGroups@2018-04-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `proximityPlacementGroups` \nAPI Version: `2018-04-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000279", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/proximityPlacementGroups@2018-04-01'" - } - }, - { - "label": "'Microsoft.Compute/proximityPlacementGroups@2018-06-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `proximityPlacementGroups` \nAPI Version: `2018-06-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000278", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/proximityPlacementGroups@2018-06-01'" - } - }, - { - "label": "'Microsoft.Compute/proximityPlacementGroups@2018-10-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `proximityPlacementGroups` \nAPI Version: `2018-10-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000277", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/proximityPlacementGroups@2018-10-01'" - } - }, - { - "label": "'Microsoft.Compute/proximityPlacementGroups@2019-03-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `proximityPlacementGroups` \nAPI Version: `2019-03-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000276", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/proximityPlacementGroups@2019-03-01'" - } - }, - { - "label": "'Microsoft.Compute/proximityPlacementGroups@2019-07-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `proximityPlacementGroups` \nAPI Version: `2019-07-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000275", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/proximityPlacementGroups@2019-07-01'" - } - }, - { - "label": "'Microsoft.Compute/proximityPlacementGroups@2019-12-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `proximityPlacementGroups` \nAPI Version: `2019-12-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000274", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/proximityPlacementGroups@2019-12-01'" - } - }, - { - "label": "'Microsoft.Compute/proximityPlacementGroups@2020-06-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `proximityPlacementGroups` \nAPI Version: `2020-06-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000273", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/proximityPlacementGroups@2020-06-01'" - } - }, - { - "label": "'Microsoft.Compute/snapshots@2016-04-30-preview'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `snapshots` \nAPI Version: `2016-04-30-preview`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000283", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/snapshots@2016-04-30-preview'" - } - }, - { - "label": "'Microsoft.Compute/snapshots@2017-03-30'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `snapshots` \nAPI Version: `2017-03-30`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000282", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/snapshots@2017-03-30'" - } - }, - { - "label": "'Microsoft.Compute/snapshots@2018-04-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `snapshots` \nAPI Version: `2018-04-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000281", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/snapshots@2018-04-01'" - } - }, - { - "label": "'Microsoft.Compute/snapshots@2018-06-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `snapshots` \nAPI Version: `2018-06-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000280", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/snapshots@2018-06-01'" - } - }, - { - "label": "'Microsoft.Compute/snapshots@2018-09-30'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `snapshots` \nAPI Version: `2018-09-30`" - }, - "deprecated": false, - "preselect": false, - "sortText": "0000027f", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/snapshots@2018-09-30'" - } - }, - { - "label": "'Microsoft.Compute/snapshots@2019-03-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `snapshots` \nAPI Version: `2019-03-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "0000027e", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/snapshots@2019-03-01'" - } - }, - { - "label": "'Microsoft.Compute/snapshots@2019-07-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `snapshots` \nAPI Version: `2019-07-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "0000027d", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/snapshots@2019-07-01'" - } - }, - { - "label": "'Microsoft.Compute/snapshots@2019-11-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `snapshots` \nAPI Version: `2019-11-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "0000027c", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/snapshots@2019-11-01'" - } - }, - { - "label": "'Microsoft.Compute/snapshots@2020-05-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `snapshots` \nAPI Version: `2020-05-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "0000027b", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/snapshots@2020-05-01'" - } - }, - { - "label": "'Microsoft.Compute/snapshots@2020-06-30'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `snapshots` \nAPI Version: `2020-06-30`" - }, - "deprecated": false, - "preselect": false, - "sortText": "0000027a", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/snapshots@2020-06-30'" - } - }, - { - "label": "'Microsoft.Compute/sshPublicKeys@2019-12-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `sshPublicKeys` \nAPI Version: `2019-12-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000285", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/sshPublicKeys@2019-12-01'" - } - }, - { - "label": "'Microsoft.Compute/sshPublicKeys@2020-06-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `sshPublicKeys` \nAPI Version: `2020-06-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000284", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/sshPublicKeys@2020-06-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2017-03-30'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/extensions` \nAPI Version: `2017-03-30`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002b3", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2017-03-30'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2017-12-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/extensions` \nAPI Version: `2017-12-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002b2", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2017-12-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2018-04-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/extensions` \nAPI Version: `2018-04-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002b1", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2018-04-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2018-06-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/extensions` \nAPI Version: `2018-06-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002b0", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2018-06-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2018-10-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/extensions` \nAPI Version: `2018-10-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002af", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2018-10-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2019-03-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/extensions` \nAPI Version: `2019-03-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002ae", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2019-03-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2019-07-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/extensions` \nAPI Version: `2019-07-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002ad", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2019-07-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2019-12-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/extensions` \nAPI Version: `2019-12-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002ac", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2019-12-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2020-06-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/extensions` \nAPI Version: `2020-06-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002ab", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2020-06-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets/virtualMachines/extensions@2019-07-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/virtualMachines/extensions` \nAPI Version: `2019-07-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002be", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets/virtualMachines/extensions@2019-07-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets/virtualMachines/extensions@2019-12-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/virtualMachines/extensions` \nAPI Version: `2019-12-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002bd", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets/virtualMachines/extensions@2019-12-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets/virtualMachines/extensions@2020-06-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/virtualMachines/extensions` \nAPI Version: `2020-06-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002bc", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets/virtualMachines/extensions@2020-06-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets/virtualMachines/runCommands@2020-06-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/virtualMachines/runCommands` \nAPI Version: `2020-06-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002bf", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets/virtualMachines/runCommands@2020-06-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2017-12-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/virtualmachines` \nAPI Version: `2017-12-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002bb", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2017-12-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2018-04-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/virtualmachines` \nAPI Version: `2018-04-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002ba", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2018-04-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2018-06-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/virtualmachines` \nAPI Version: `2018-06-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002b9", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2018-06-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2018-10-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/virtualmachines` \nAPI Version: `2018-10-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002b8", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2018-10-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2019-03-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/virtualmachines` \nAPI Version: `2019-03-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002b7", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2019-03-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2019-07-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/virtualmachines` \nAPI Version: `2019-07-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002b6", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2019-07-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2019-12-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/virtualmachines` \nAPI Version: `2019-12-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002b5", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2019-12-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2020-06-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/virtualmachines` \nAPI Version: `2020-06-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002b4", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2020-06-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets@2015-06-15'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets` \nAPI Version: `2015-06-15`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002aa", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets@2015-06-15'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets@2016-03-30'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets` \nAPI Version: `2016-03-30`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002a9", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets@2016-03-30'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets@2016-04-30-preview'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets` \nAPI Version: `2016-04-30-preview`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002a8", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets@2016-04-30-preview'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets@2017-03-30'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets` \nAPI Version: `2017-03-30`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002a7", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets@2017-03-30'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets@2017-12-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets` \nAPI Version: `2017-12-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002a6", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets@2017-12-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets@2018-04-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets` \nAPI Version: `2018-04-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002a5", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets@2018-04-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets@2018-06-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets` \nAPI Version: `2018-06-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002a4", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets@2018-06-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets@2018-10-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets` \nAPI Version: `2018-10-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002a3", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets@2018-10-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets@2019-03-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets` \nAPI Version: `2019-03-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002a2", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets@2019-03-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets@2019-07-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets` \nAPI Version: `2019-07-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002a1", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets@2019-07-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets@2019-12-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets` \nAPI Version: `2019-12-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000002a0", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets@2019-12-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachineScaleSets@2020-06-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets` \nAPI Version: `2020-06-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "0000029f", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachineScaleSets@2020-06-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachines/extensions@2015-06-15'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines/extensions` \nAPI Version: `2015-06-15`" - }, - "deprecated": false, - "preselect": false, - "sortText": "0000029d", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachines/extensions@2015-06-15'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachines/extensions@2016-03-30'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines/extensions` \nAPI Version: `2016-03-30`" - }, - "deprecated": false, - "preselect": false, - "sortText": "0000029c", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachines/extensions@2016-03-30'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachines/extensions@2016-04-30-preview'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines/extensions` \nAPI Version: `2016-04-30-preview`" - }, - "deprecated": false, - "preselect": false, - "sortText": "0000029b", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachines/extensions@2016-04-30-preview'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachines/extensions@2017-03-30'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines/extensions` \nAPI Version: `2017-03-30`" - }, - "deprecated": false, - "preselect": false, - "sortText": "0000029a", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachines/extensions@2017-03-30'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachines/extensions@2017-12-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines/extensions` \nAPI Version: `2017-12-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000299", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachines/extensions@2017-12-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachines/extensions@2018-04-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines/extensions` \nAPI Version: `2018-04-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000298", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachines/extensions@2018-04-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachines/extensions@2018-06-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines/extensions` \nAPI Version: `2018-06-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000297", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachines/extensions@2018-06-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachines/extensions@2018-10-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines/extensions` \nAPI Version: `2018-10-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000296", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachines/extensions@2018-10-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachines/extensions@2019-03-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines/extensions` \nAPI Version: `2019-03-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000295", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachines/extensions@2019-03-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachines/extensions@2019-07-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines/extensions` \nAPI Version: `2019-07-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000294", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachines/extensions@2019-07-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachines/extensions@2019-12-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines/extensions` \nAPI Version: `2019-12-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000293", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachines/extensions@2019-12-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachines/extensions@2020-06-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines/extensions` \nAPI Version: `2020-06-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000292", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachines/extensions@2020-06-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachines/runCommands@2020-06-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines/runCommands` \nAPI Version: `2020-06-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "0000029e", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachines/runCommands@2020-06-01'" - } - }, - { - "label": "'Microsoft.Compute/virtualMachines@2015-06-15'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines` \nAPI Version: `2015-06-15`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000291", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Compute/virtualMachines@2015-06-15'" + "newText": "'Microsoft.Compute/proximityPlacementGroups@2018-04-01'" } }, { - "label": "'Microsoft.Compute/virtualMachines@2016-03-30'", + "label": "'Microsoft.Compute/proximityPlacementGroups@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines` \nAPI Version: `2016-03-30`" + "value": "Namespace: `Microsoft.Compute` \nType: `proximityPlacementGroups` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000290", + "sortText": "0000024f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/virtualMachines@2016-03-30'" + "newText": "'Microsoft.Compute/proximityPlacementGroups@2018-06-01'" } }, { - "label": "'Microsoft.Compute/virtualMachines@2016-04-30-preview'", + "label": "'Microsoft.Compute/proximityPlacementGroups@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines` \nAPI Version: `2016-04-30-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `proximityPlacementGroups` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000028f", + "sortText": "0000024e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/virtualMachines@2016-04-30-preview'" + "newText": "'Microsoft.Compute/proximityPlacementGroups@2018-10-01'" } }, { - "label": "'Microsoft.Compute/virtualMachines@2017-03-30'", + "label": "'Microsoft.Compute/proximityPlacementGroups@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines` \nAPI Version: `2017-03-30`" + "value": "Namespace: `Microsoft.Compute` \nType: `proximityPlacementGroups` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000028e", + "sortText": "0000024d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/virtualMachines@2017-03-30'" + "newText": "'Microsoft.Compute/proximityPlacementGroups@2019-03-01'" } }, { - "label": "'Microsoft.Compute/virtualMachines@2017-12-01'", + "label": "'Microsoft.Compute/proximityPlacementGroups@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines` \nAPI Version: `2017-12-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `proximityPlacementGroups` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000028d", + "sortText": "0000024c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/virtualMachines@2017-12-01'" + "newText": "'Microsoft.Compute/proximityPlacementGroups@2019-07-01'" } }, { - "label": "'Microsoft.Compute/virtualMachines@2018-04-01'", + "label": "'Microsoft.Compute/proximityPlacementGroups@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `proximityPlacementGroups` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000028c", + "sortText": "0000024b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/virtualMachines@2018-04-01'" + "newText": "'Microsoft.Compute/proximityPlacementGroups@2019-12-01'" } }, { - "label": "'Microsoft.Compute/virtualMachines@2018-06-01'", + "label": "'Microsoft.Compute/proximityPlacementGroups@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `proximityPlacementGroups` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000028b", + "sortText": "0000024a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/virtualMachines@2018-06-01'" + "newText": "'Microsoft.Compute/proximityPlacementGroups@2020-06-01'" } }, { - "label": "'Microsoft.Compute/virtualMachines@2018-10-01'", + "label": "'Microsoft.Compute/snapshots@2016-04-30-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `snapshots` \nAPI Version: `2016-04-30-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000028a", + "sortText": "0000025a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/virtualMachines@2018-10-01'" + "newText": "'Microsoft.Compute/snapshots@2016-04-30-preview'" } }, { - "label": "'Microsoft.Compute/virtualMachines@2019-03-01'", + "label": "'Microsoft.Compute/snapshots@2017-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines` \nAPI Version: `2019-03-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `snapshots` \nAPI Version: `2017-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "00000289", + "sortText": "00000259", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/virtualMachines@2019-03-01'" + "newText": "'Microsoft.Compute/snapshots@2017-03-30'" } }, { - "label": "'Microsoft.Compute/virtualMachines@2019-07-01'", + "label": "'Microsoft.Compute/snapshots@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `snapshots` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000288", + "sortText": "00000258", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/virtualMachines@2019-07-01'" + "newText": "'Microsoft.Compute/snapshots@2018-04-01'" } }, { - "label": "'Microsoft.Compute/virtualMachines@2019-12-01'", + "label": "'Microsoft.Compute/snapshots@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `snapshots` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000287", + "sortText": "00000257", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/virtualMachines@2019-12-01'" + "newText": "'Microsoft.Compute/snapshots@2018-06-01'" } }, { - "label": "'Microsoft.Compute/virtualMachines@2020-06-01'", + "label": "'Microsoft.Compute/snapshots@2018-09-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `snapshots` \nAPI Version: `2018-09-30`" }, "deprecated": false, "preselect": false, - "sortText": "00000286", + "sortText": "00000256", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Compute/virtualMachines@2020-06-01'" + "newText": "'Microsoft.Compute/snapshots@2018-09-30'" } }, { - "label": "'Microsoft.Confluent/agreements@2020-03-01-preview'", + "label": "'Microsoft.Compute/snapshots@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Confluent` \nType: `agreements` \nAPI Version: `2020-03-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `snapshots` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002c0", + "sortText": "00000255", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Confluent/agreements@2020-03-01-preview'" + "newText": "'Microsoft.Compute/snapshots@2019-03-01'" } }, { - "label": "'Microsoft.Confluent/organizations@2020-03-01-preview'", + "label": "'Microsoft.Compute/snapshots@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Confluent` \nType: `organizations` \nAPI Version: `2020-03-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `snapshots` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002c1", + "sortText": "00000254", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Confluent/organizations@2020-03-01-preview'" + "newText": "'Microsoft.Compute/snapshots@2019-07-01'" } }, { - "label": "'Microsoft.Consumption/budgets@2017-12-30-preview'", + "label": "'Microsoft.Compute/snapshots@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Consumption` \nType: `budgets` \nAPI Version: `2017-12-30-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `snapshots` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002cd", + "sortText": "00000253", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Consumption/budgets@2017-12-30-preview'" + "newText": "'Microsoft.Compute/snapshots@2019-11-01'" } }, { - "label": "'Microsoft.Consumption/budgets@2018-01-31'", + "label": "'Microsoft.Compute/snapshots@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Consumption` \nType: `budgets` \nAPI Version: `2018-01-31`" + "value": "Namespace: `Microsoft.Compute` \nType: `snapshots` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002cc", + "sortText": "00000252", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Consumption/budgets@2018-01-31'" + "newText": "'Microsoft.Compute/snapshots@2020-05-01'" } }, { - "label": "'Microsoft.Consumption/budgets@2018-03-31'", + "label": "'Microsoft.Compute/snapshots@2020-06-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Consumption` \nType: `budgets` \nAPI Version: `2018-03-31`" + "value": "Namespace: `Microsoft.Compute` \nType: `snapshots` \nAPI Version: `2020-06-30`" }, "deprecated": false, "preselect": false, - "sortText": "000002cb", + "sortText": "00000251", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Consumption/budgets@2018-03-31'" + "newText": "'Microsoft.Compute/snapshots@2020-06-30'" } }, { - "label": "'Microsoft.Consumption/budgets@2018-06-30'", + "label": "'Microsoft.Compute/sshPublicKeys@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Consumption` \nType: `budgets` \nAPI Version: `2018-06-30`" + "value": "Namespace: `Microsoft.Compute` \nType: `sshPublicKeys` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002ca", + "sortText": "0000025c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Consumption/budgets@2018-06-30'" + "newText": "'Microsoft.Compute/sshPublicKeys@2019-12-01'" } }, { - "label": "'Microsoft.Consumption/budgets@2018-08-31'", + "label": "'Microsoft.Compute/sshPublicKeys@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Consumption` \nType: `budgets` \nAPI Version: `2018-08-31`" + "value": "Namespace: `Microsoft.Compute` \nType: `sshPublicKeys` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002c9", + "sortText": "0000025b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Consumption/budgets@2018-08-31'" + "newText": "'Microsoft.Compute/sshPublicKeys@2020-06-01'" } }, { - "label": "'Microsoft.Consumption/budgets@2018-10-01'", + "label": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2017-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Consumption` \nType: `budgets` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/extensions` \nAPI Version: `2017-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "000002c8", + "sortText": "0000028a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Consumption/budgets@2018-10-01'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2017-03-30'" } }, { - "label": "'Microsoft.Consumption/budgets@2019-01-01'", + "label": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2017-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Consumption` \nType: `budgets` \nAPI Version: `2019-01-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/extensions` \nAPI Version: `2017-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002c7", + "sortText": "00000289", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Consumption/budgets@2019-01-01'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2017-12-01'" } }, { - "label": "'Microsoft.Consumption/budgets@2019-04-01-preview'", + "label": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Consumption` \nType: `budgets` \nAPI Version: `2019-04-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/extensions` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002c6", + "sortText": "00000288", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Consumption/budgets@2019-04-01-preview'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2018-04-01'" } }, { - "label": "'Microsoft.Consumption/budgets@2019-05-01'", + "label": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Consumption` \nType: `budgets` \nAPI Version: `2019-05-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/extensions` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002c5", + "sortText": "00000287", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Consumption/budgets@2019-05-01'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2018-06-01'" } }, { - "label": "'Microsoft.Consumption/budgets@2019-05-01-preview'", + "label": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Consumption` \nType: `budgets` \nAPI Version: `2019-05-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/extensions` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002c4", + "sortText": "00000286", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Consumption/budgets@2019-05-01-preview'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2018-10-01'" } }, { - "label": "'Microsoft.Consumption/budgets@2019-06-01'", + "label": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Consumption` \nType: `budgets` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/extensions` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002c3", + "sortText": "00000285", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Consumption/budgets@2019-06-01'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2019-03-01'" } }, { - "label": "'Microsoft.Consumption/budgets@2019-10-01'", + "label": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Consumption` \nType: `budgets` \nAPI Version: `2019-10-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/extensions` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002c2", + "sortText": "00000284", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Consumption/budgets@2019-10-01'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2019-07-01'" } }, { - "label": "'Microsoft.ContainerInstance/containerGroups@2017-08-01-preview'", + "label": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerInstance` \nType: `containerGroups` \nAPI Version: `2017-08-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/extensions` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002d6", + "sortText": "00000283", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerInstance/containerGroups@2017-08-01-preview'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2019-12-01'" } }, { - "label": "'Microsoft.ContainerInstance/containerGroups@2017-10-01-preview'", + "label": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerInstance` \nType: `containerGroups` \nAPI Version: `2017-10-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/extensions` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002d5", + "sortText": "00000282", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerInstance/containerGroups@2017-10-01-preview'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets/extensions@2020-06-01'" } }, { - "label": "'Microsoft.ContainerInstance/containerGroups@2017-12-01-preview'", + "label": "'Microsoft.Compute/virtualMachineScaleSets/virtualMachines/extensions@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerInstance` \nType: `containerGroups` \nAPI Version: `2017-12-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/virtualMachines/extensions` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002d4", + "sortText": "00000295", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerInstance/containerGroups@2017-12-01-preview'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets/virtualMachines/extensions@2019-07-01'" } }, { - "label": "'Microsoft.ContainerInstance/containerGroups@2018-02-01-preview'", + "label": "'Microsoft.Compute/virtualMachineScaleSets/virtualMachines/extensions@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerInstance` \nType: `containerGroups` \nAPI Version: `2018-02-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/virtualMachines/extensions` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002d3", + "sortText": "00000294", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerInstance/containerGroups@2018-02-01-preview'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets/virtualMachines/extensions@2019-12-01'" } }, { - "label": "'Microsoft.ContainerInstance/containerGroups@2018-04-01'", + "label": "'Microsoft.Compute/virtualMachineScaleSets/virtualMachines/extensions@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerInstance` \nType: `containerGroups` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/virtualMachines/extensions` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002d2", + "sortText": "00000293", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerInstance/containerGroups@2018-04-01'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets/virtualMachines/extensions@2020-06-01'" } }, { - "label": "'Microsoft.ContainerInstance/containerGroups@2018-06-01'", + "label": "'Microsoft.Compute/virtualMachineScaleSets/virtualMachines/runCommands@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerInstance` \nType: `containerGroups` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/virtualMachines/runCommands` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002d1", + "sortText": "00000296", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerInstance/containerGroups@2018-06-01'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets/virtualMachines/runCommands@2020-06-01'" } }, { - "label": "'Microsoft.ContainerInstance/containerGroups@2018-09-01'", + "label": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2017-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerInstance` \nType: `containerGroups` \nAPI Version: `2018-09-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/virtualmachines` \nAPI Version: `2017-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002d0", + "sortText": "00000292", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerInstance/containerGroups@2018-09-01'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2017-12-01'" } }, { - "label": "'Microsoft.ContainerInstance/containerGroups@2018-10-01'", + "label": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerInstance` \nType: `containerGroups` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/virtualmachines` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002cf", + "sortText": "00000291", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerInstance/containerGroups@2018-10-01'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2018-04-01'" } }, { - "label": "'Microsoft.ContainerInstance/containerGroups@2019-12-01'", + "label": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerInstance` \nType: `containerGroups` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/virtualmachines` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002ce", + "sortText": "00000290", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerInstance/containerGroups@2019-12-01'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2018-06-01'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/agentPools@2019-06-01-preview'", + "label": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/agentPools` \nAPI Version: `2019-06-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/virtualmachines` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002de", + "sortText": "0000028f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/agentPools@2019-06-01-preview'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2018-10-01'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/buildTasks/steps@2018-02-01-preview'", + "label": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/buildTasks/steps` \nAPI Version: `2018-02-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/virtualmachines` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002e0", + "sortText": "0000028e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/buildTasks/steps@2018-02-01-preview'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2019-03-01'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/buildTasks@2018-02-01-preview'", + "label": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/buildTasks` \nAPI Version: `2018-02-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/virtualmachines` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002df", + "sortText": "0000028d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/buildTasks@2018-02-01-preview'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2019-07-01'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/connectedRegistries@2020-11-01-preview'", + "label": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/connectedRegistries` \nAPI Version: `2020-11-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/virtualmachines` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002e1", + "sortText": "0000028c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/connectedRegistries@2020-11-01-preview'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2019-12-01'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/exportPipelines@2019-12-01-preview'", + "label": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/exportPipelines` \nAPI Version: `2019-12-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets/virtualmachines` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002e3", + "sortText": "0000028b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/exportPipelines@2019-12-01-preview'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets/virtualmachines@2020-06-01'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/exportPipelines@2020-11-01-preview'", + "label": "'Microsoft.Compute/virtualMachineScaleSets@2015-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/exportPipelines` \nAPI Version: `2020-11-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets` \nAPI Version: `2015-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "000002e2", + "sortText": "00000281", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/exportPipelines@2020-11-01-preview'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets@2015-06-15'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/importPipelines@2019-12-01-preview'", + "label": "'Microsoft.Compute/virtualMachineScaleSets@2016-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/importPipelines` \nAPI Version: `2019-12-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets` \nAPI Version: `2016-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "000002e5", + "sortText": "00000280", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/importPipelines@2019-12-01-preview'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets@2016-03-30'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/importPipelines@2020-11-01-preview'", + "label": "'Microsoft.Compute/virtualMachineScaleSets@2016-04-30-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/importPipelines` \nAPI Version: `2020-11-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets` \nAPI Version: `2016-04-30-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000002e4", + "sortText": "0000027f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/importPipelines@2020-11-01-preview'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets@2016-04-30-preview'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/pipelineRuns@2019-12-01-preview'", + "label": "'Microsoft.Compute/virtualMachineScaleSets@2017-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/pipelineRuns` \nAPI Version: `2019-12-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets` \nAPI Version: `2017-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "000002e7", + "sortText": "0000027e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/pipelineRuns@2019-12-01-preview'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets@2017-03-30'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/pipelineRuns@2020-11-01-preview'", + "label": "'Microsoft.Compute/virtualMachineScaleSets@2017-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/pipelineRuns` \nAPI Version: `2020-11-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets` \nAPI Version: `2017-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002e6", + "sortText": "0000027d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/pipelineRuns@2020-11-01-preview'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets@2017-12-01'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/privateEndpointConnections@2019-12-01-preview'", + "label": "'Microsoft.Compute/virtualMachineScaleSets@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/privateEndpointConnections` \nAPI Version: `2019-12-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002e9", + "sortText": "0000027c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/privateEndpointConnections@2019-12-01-preview'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets@2018-04-01'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/privateEndpointConnections@2020-11-01-preview'", + "label": "'Microsoft.Compute/virtualMachineScaleSets@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/privateEndpointConnections` \nAPI Version: `2020-11-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002e8", + "sortText": "0000027b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/privateEndpointConnections@2020-11-01-preview'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets@2018-06-01'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/replications@2017-06-01-preview'", + "label": "'Microsoft.Compute/virtualMachineScaleSets@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/replications` \nAPI Version: `2017-06-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002ee", + "sortText": "0000027a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/replications@2017-06-01-preview'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets@2018-10-01'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/replications@2017-10-01'", + "label": "'Microsoft.Compute/virtualMachineScaleSets@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/replications` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002ed", + "sortText": "00000279", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/replications@2017-10-01'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets@2019-03-01'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/replications@2019-05-01'", + "label": "'Microsoft.Compute/virtualMachineScaleSets@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/replications` \nAPI Version: `2019-05-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002ec", + "sortText": "00000278", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/replications@2019-05-01'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets@2019-07-01'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/replications@2019-12-01-preview'", + "label": "'Microsoft.Compute/virtualMachineScaleSets@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/replications` \nAPI Version: `2019-12-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002eb", + "sortText": "00000277", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/replications@2019-12-01-preview'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets@2019-12-01'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/replications@2020-11-01-preview'", + "label": "'Microsoft.Compute/virtualMachineScaleSets@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/replications` \nAPI Version: `2020-11-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachineScaleSets` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002ea", + "sortText": "00000276", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/replications@2020-11-01-preview'" + "newText": "'Microsoft.Compute/virtualMachineScaleSets@2020-06-01'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/scopeMaps@2019-05-01-preview'", + "label": "'Microsoft.Compute/virtualMachines/extensions@2015-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/scopeMaps` \nAPI Version: `2019-05-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines/extensions` \nAPI Version: `2015-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "000002f0", + "sortText": "00000274", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/scopeMaps@2019-05-01-preview'" + "newText": "'Microsoft.Compute/virtualMachines/extensions@2015-06-15'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/scopeMaps@2020-11-01-preview'", + "label": "'Microsoft.Compute/virtualMachines/extensions@2016-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/scopeMaps` \nAPI Version: `2020-11-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines/extensions` \nAPI Version: `2016-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "000002ef", + "sortText": "00000273", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/scopeMaps@2020-11-01-preview'" + "newText": "'Microsoft.Compute/virtualMachines/extensions@2016-03-30'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/taskRuns@2019-06-01-preview'", + "label": "'Microsoft.Compute/virtualMachines/extensions@2016-04-30-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/taskRuns` \nAPI Version: `2019-06-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines/extensions` \nAPI Version: `2016-04-30-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000002f1", + "sortText": "00000272", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/taskRuns@2019-06-01-preview'" + "newText": "'Microsoft.Compute/virtualMachines/extensions@2016-04-30-preview'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/tasks@2018-09-01'", + "label": "'Microsoft.Compute/virtualMachines/extensions@2017-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/tasks` \nAPI Version: `2018-09-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines/extensions` \nAPI Version: `2017-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "000002f4", + "sortText": "00000271", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/tasks@2018-09-01'" + "newText": "'Microsoft.Compute/virtualMachines/extensions@2017-03-30'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/tasks@2019-04-01'", + "label": "'Microsoft.Compute/virtualMachines/extensions@2017-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/tasks` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines/extensions` \nAPI Version: `2017-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002f3", + "sortText": "00000270", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/tasks@2019-04-01'" + "newText": "'Microsoft.Compute/virtualMachines/extensions@2017-12-01'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/tasks@2019-06-01-preview'", + "label": "'Microsoft.Compute/virtualMachines/extensions@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/tasks` \nAPI Version: `2019-06-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines/extensions` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002f2", + "sortText": "0000026f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/tasks@2019-06-01-preview'" + "newText": "'Microsoft.Compute/virtualMachines/extensions@2018-04-01'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/tokens@2019-05-01-preview'", + "label": "'Microsoft.Compute/virtualMachines/extensions@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/tokens` \nAPI Version: `2019-05-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines/extensions` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002f6", + "sortText": "0000026e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/tokens@2019-05-01-preview'" + "newText": "'Microsoft.Compute/virtualMachines/extensions@2018-06-01'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/tokens@2020-11-01-preview'", + "label": "'Microsoft.Compute/virtualMachines/extensions@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/tokens` \nAPI Version: `2020-11-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines/extensions` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002f5", + "sortText": "0000026d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/tokens@2020-11-01-preview'" + "newText": "'Microsoft.Compute/virtualMachines/extensions@2018-10-01'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/webhooks@2017-06-01-preview'", + "label": "'Microsoft.Compute/virtualMachines/extensions@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/webhooks` \nAPI Version: `2017-06-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines/extensions` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002fb", + "sortText": "0000026c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/webhooks@2017-06-01-preview'" + "newText": "'Microsoft.Compute/virtualMachines/extensions@2019-03-01'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/webhooks@2017-10-01'", + "label": "'Microsoft.Compute/virtualMachines/extensions@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/webhooks` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines/extensions` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002fa", + "sortText": "0000026b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/webhooks@2017-10-01'" + "newText": "'Microsoft.Compute/virtualMachines/extensions@2019-07-01'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/webhooks@2019-05-01'", + "label": "'Microsoft.Compute/virtualMachines/extensions@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/webhooks` \nAPI Version: `2019-05-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines/extensions` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002f9", + "sortText": "0000026a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/webhooks@2019-05-01'" + "newText": "'Microsoft.Compute/virtualMachines/extensions@2019-12-01'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/webhooks@2019-12-01-preview'", + "label": "'Microsoft.Compute/virtualMachines/extensions@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/webhooks` \nAPI Version: `2019-12-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines/extensions` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002f8", + "sortText": "00000269", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/webhooks@2019-12-01-preview'" + "newText": "'Microsoft.Compute/virtualMachines/extensions@2020-06-01'" } }, { - "label": "'Microsoft.ContainerRegistry/registries/webhooks@2020-11-01-preview'", + "label": "'Microsoft.Compute/virtualMachines/runCommands@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/webhooks` \nAPI Version: `2020-11-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines/runCommands` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002f7", + "sortText": "00000275", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries/webhooks@2020-11-01-preview'" + "newText": "'Microsoft.Compute/virtualMachines/runCommands@2020-06-01'" } }, { - "label": "'Microsoft.ContainerRegistry/registries@2016-06-27-preview'", + "label": "'Microsoft.Compute/virtualMachines@2015-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries` \nAPI Version: `2016-06-27-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines` \nAPI Version: `2015-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "000002dd", + "sortText": "00000268", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries@2016-06-27-preview'" + "newText": "'Microsoft.Compute/virtualMachines@2015-06-15'" } }, { - "label": "'Microsoft.ContainerRegistry/registries@2017-03-01'", + "label": "'Microsoft.Compute/virtualMachines@2016-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries` \nAPI Version: `2017-03-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines` \nAPI Version: `2016-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "000002dc", + "sortText": "00000267", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries@2017-03-01'" + "newText": "'Microsoft.Compute/virtualMachines@2016-03-30'" } }, { - "label": "'Microsoft.ContainerRegistry/registries@2017-06-01-preview'", + "label": "'Microsoft.Compute/virtualMachines@2016-04-30-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries` \nAPI Version: `2017-06-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines` \nAPI Version: `2016-04-30-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000002db", + "sortText": "00000266", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries@2017-06-01-preview'" + "newText": "'Microsoft.Compute/virtualMachines@2016-04-30-preview'" } }, { - "label": "'Microsoft.ContainerRegistry/registries@2017-10-01'", + "label": "'Microsoft.Compute/virtualMachines@2017-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines` \nAPI Version: `2017-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "000002da", + "sortText": "00000265", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries@2017-10-01'" + "newText": "'Microsoft.Compute/virtualMachines@2017-03-30'" } }, { - "label": "'Microsoft.ContainerRegistry/registries@2019-05-01'", + "label": "'Microsoft.Compute/virtualMachines@2017-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries` \nAPI Version: `2019-05-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines` \nAPI Version: `2017-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002d9", + "sortText": "00000264", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries@2019-05-01'" + "newText": "'Microsoft.Compute/virtualMachines@2017-12-01'" } }, { - "label": "'Microsoft.ContainerRegistry/registries@2019-12-01-preview'", + "label": "'Microsoft.Compute/virtualMachines@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries` \nAPI Version: `2019-12-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002d8", + "sortText": "00000263", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries@2019-12-01-preview'" + "newText": "'Microsoft.Compute/virtualMachines@2018-04-01'" } }, { - "label": "'Microsoft.ContainerRegistry/registries@2020-11-01-preview'", + "label": "'Microsoft.Compute/virtualMachines@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries` \nAPI Version: `2020-11-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002d7", + "sortText": "00000262", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerRegistry/registries@2020-11-01-preview'" + "newText": "'Microsoft.Compute/virtualMachines@2018-06-01'" } }, { - "label": "'Microsoft.ContainerService/containerServices@2015-11-01-preview'", + "label": "'Microsoft.Compute/virtualMachines@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `containerServices` \nAPI Version: `2015-11-01-preview`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000300", + "sortText": "00000261", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/containerServices@2015-11-01-preview'" + "newText": "'Microsoft.Compute/virtualMachines@2018-10-01'" } }, { - "label": "'Microsoft.ContainerService/containerServices@2016-03-30'", + "label": "'Microsoft.Compute/virtualMachines@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `containerServices` \nAPI Version: `2016-03-30`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002ff", + "sortText": "00000260", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/containerServices@2016-03-30'" + "newText": "'Microsoft.Compute/virtualMachines@2019-03-01'" } }, { - "label": "'Microsoft.ContainerService/containerServices@2016-09-30'", + "label": "'Microsoft.Compute/virtualMachines@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `containerServices` \nAPI Version: `2016-09-30`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002fe", + "sortText": "0000025f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/containerServices@2016-09-30'" + "newText": "'Microsoft.Compute/virtualMachines@2019-07-01'" } }, { - "label": "'Microsoft.ContainerService/containerServices@2017-01-31'", + "label": "'Microsoft.Compute/virtualMachines@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `containerServices` \nAPI Version: `2017-01-31`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002fd", + "sortText": "0000025e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/containerServices@2017-01-31'" + "newText": "'Microsoft.Compute/virtualMachines@2019-12-01'" } }, { - "label": "'Microsoft.ContainerService/containerServices@2017-07-01'", + "label": "'Microsoft.Compute/virtualMachines@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `containerServices` \nAPI Version: `2017-07-01`" + "value": "Namespace: `Microsoft.Compute` \nType: `virtualMachines` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000002fc", + "sortText": "0000025d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/containerServices@2017-07-01'" + "newText": "'Microsoft.Compute/virtualMachines@2020-06-01'" } }, { - "label": "'Microsoft.ContainerService/managedClusters/agentPools@2019-02-01'", + "label": "'Microsoft.Confluent/organizations@2020-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Confluent` \nType: `organizations` \nAPI Version: `2020-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000031f", + "sortText": "00000297", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2019-02-01'" + "newText": "'Microsoft.Confluent/organizations@2020-03-01-preview'" } }, { - "label": "'Microsoft.ContainerService/managedClusters/agentPools@2019-04-01'", + "label": "'Microsoft.Consumption/budgets@2018-01-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Consumption` \nType: `budgets` \nAPI Version: `2018-01-31`" }, "deprecated": false, "preselect": false, - "sortText": "0000031e", + "sortText": "000002a2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2019-04-01'" + "newText": "'Microsoft.Consumption/budgets@2018-01-31'" } }, { - "label": "'Microsoft.ContainerService/managedClusters/agentPools@2019-06-01'", + "label": "'Microsoft.Consumption/budgets@2018-03-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Consumption` \nType: `budgets` \nAPI Version: `2018-03-31`" }, "deprecated": false, "preselect": false, - "sortText": "0000031d", + "sortText": "000002a1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2019-06-01'" + "newText": "'Microsoft.Consumption/budgets@2018-03-31'" } }, { - "label": "'Microsoft.ContainerService/managedClusters/agentPools@2019-08-01'", + "label": "'Microsoft.Consumption/budgets@2018-06-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Consumption` \nType: `budgets` \nAPI Version: `2018-06-30`" }, "deprecated": false, "preselect": false, - "sortText": "0000031c", + "sortText": "000002a0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2019-08-01'" + "newText": "'Microsoft.Consumption/budgets@2018-06-30'" } }, { - "label": "'Microsoft.ContainerService/managedClusters/agentPools@2019-10-01'", + "label": "'Microsoft.Consumption/budgets@2018-08-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2019-10-01`" + "value": "Namespace: `Microsoft.Consumption` \nType: `budgets` \nAPI Version: `2018-08-31`" }, "deprecated": false, "preselect": false, - "sortText": "0000031b", + "sortText": "0000029f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2019-10-01'" + "newText": "'Microsoft.Consumption/budgets@2018-08-31'" } }, { - "label": "'Microsoft.ContainerService/managedClusters/agentPools@2019-11-01'", + "label": "'Microsoft.Consumption/budgets@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Consumption` \nType: `budgets` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000031a", + "sortText": "0000029e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2019-11-01'" + "newText": "'Microsoft.Consumption/budgets@2018-10-01'" } }, { - "label": "'Microsoft.ContainerService/managedClusters/agentPools@2020-01-01'", + "label": "'Microsoft.Consumption/budgets@2019-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Consumption` \nType: `budgets` \nAPI Version: `2019-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000319", + "sortText": "0000029d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2020-01-01'" + "newText": "'Microsoft.Consumption/budgets@2019-01-01'" } }, { - "label": "'Microsoft.ContainerService/managedClusters/agentPools@2020-02-01'", + "label": "'Microsoft.Consumption/budgets@2019-04-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2020-02-01`" + "value": "Namespace: `Microsoft.Consumption` \nType: `budgets` \nAPI Version: `2019-04-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000318", + "sortText": "0000029c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2020-02-01'" + "newText": "'Microsoft.Consumption/budgets@2019-04-01-preview'" } }, { - "label": "'Microsoft.ContainerService/managedClusters/agentPools@2020-03-01'", + "label": "'Microsoft.Consumption/budgets@2019-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Consumption` \nType: `budgets` \nAPI Version: `2019-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000317", + "sortText": "0000029b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2020-03-01'" + "newText": "'Microsoft.Consumption/budgets@2019-05-01'" } }, { - "label": "'Microsoft.ContainerService/managedClusters/agentPools@2020-04-01'", + "label": "'Microsoft.Consumption/budgets@2019-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Consumption` \nType: `budgets` \nAPI Version: `2019-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000316", + "sortText": "0000029a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2020-04-01'" + "newText": "'Microsoft.Consumption/budgets@2019-05-01-preview'" } }, { - "label": "'Microsoft.ContainerService/managedClusters/agentPools@2020-06-01'", + "label": "'Microsoft.Consumption/budgets@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Consumption` \nType: `budgets` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000315", + "sortText": "00000299", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2020-06-01'" + "newText": "'Microsoft.Consumption/budgets@2019-06-01'" } }, { - "label": "'Microsoft.ContainerService/managedClusters/agentPools@2020-07-01'", + "label": "'Microsoft.Consumption/budgets@2019-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2020-07-01`" + "value": "Namespace: `Microsoft.Consumption` \nType: `budgets` \nAPI Version: `2019-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000314", + "sortText": "00000298", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2020-07-01'" + "newText": "'Microsoft.Consumption/budgets@2019-10-01'" } }, { - "label": "'Microsoft.ContainerService/managedClusters/agentPools@2020-09-01'", + "label": "'Microsoft.ContainerInstance/containerGroups@2017-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2020-09-01`" + "value": "Namespace: `Microsoft.ContainerInstance` \nType: `containerGroups` \nAPI Version: `2017-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000313", + "sortText": "000002ab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2020-09-01'" + "newText": "'Microsoft.ContainerInstance/containerGroups@2017-08-01-preview'" } }, { - "label": "'Microsoft.ContainerService/managedClusters/agentPools@2020-11-01'", + "label": "'Microsoft.ContainerInstance/containerGroups@2017-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2020-11-01`" + "value": "Namespace: `Microsoft.ContainerInstance` \nType: `containerGroups` \nAPI Version: `2017-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000312", + "sortText": "000002aa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2020-11-01'" + "newText": "'Microsoft.ContainerInstance/containerGroups@2017-10-01-preview'" } }, { - "label": "'Microsoft.ContainerService/managedClusters/privateEndpointConnections@2020-06-01'", + "label": "'Microsoft.ContainerInstance/containerGroups@2017-12-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/privateEndpointConnections` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.ContainerInstance` \nType: `containerGroups` \nAPI Version: `2017-12-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000323", + "sortText": "000002a9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters/privateEndpointConnections@2020-06-01'" + "newText": "'Microsoft.ContainerInstance/containerGroups@2017-12-01-preview'" } }, { - "label": "'Microsoft.ContainerService/managedClusters/privateEndpointConnections@2020-07-01'", + "label": "'Microsoft.ContainerInstance/containerGroups@2018-02-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/privateEndpointConnections` \nAPI Version: `2020-07-01`" + "value": "Namespace: `Microsoft.ContainerInstance` \nType: `containerGroups` \nAPI Version: `2018-02-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000322", + "sortText": "000002a8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters/privateEndpointConnections@2020-07-01'" + "newText": "'Microsoft.ContainerInstance/containerGroups@2018-02-01-preview'" } }, { - "label": "'Microsoft.ContainerService/managedClusters/privateEndpointConnections@2020-09-01'", + "label": "'Microsoft.ContainerInstance/containerGroups@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/privateEndpointConnections` \nAPI Version: `2020-09-01`" + "value": "Namespace: `Microsoft.ContainerInstance` \nType: `containerGroups` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000321", + "sortText": "000002a7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters/privateEndpointConnections@2020-09-01'" + "newText": "'Microsoft.ContainerInstance/containerGroups@2018-04-01'" } }, { - "label": "'Microsoft.ContainerService/managedClusters/privateEndpointConnections@2020-11-01'", + "label": "'Microsoft.ContainerInstance/containerGroups@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/privateEndpointConnections` \nAPI Version: `2020-11-01`" + "value": "Namespace: `Microsoft.ContainerInstance` \nType: `containerGroups` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000320", + "sortText": "000002a6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters/privateEndpointConnections@2020-11-01'" + "newText": "'Microsoft.ContainerInstance/containerGroups@2018-06-01'" } }, { - "label": "'Microsoft.ContainerService/managedClusters@2017-08-31'", + "label": "'Microsoft.ContainerInstance/containerGroups@2018-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2017-08-31`" + "value": "Namespace: `Microsoft.ContainerInstance` \nType: `containerGroups` \nAPI Version: `2018-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000311", + "sortText": "000002a5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters@2017-08-31'" + "newText": "'Microsoft.ContainerInstance/containerGroups@2018-09-01'" } }, { - "label": "'Microsoft.ContainerService/managedClusters@2018-03-31'", + "label": "'Microsoft.ContainerInstance/containerGroups@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2018-03-31`" + "value": "Namespace: `Microsoft.ContainerInstance` \nType: `containerGroups` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000310", + "sortText": "000002a4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters@2018-03-31'" + "newText": "'Microsoft.ContainerInstance/containerGroups@2018-10-01'" } }, { - "label": "'Microsoft.ContainerService/managedClusters@2018-08-01-preview'", + "label": "'Microsoft.ContainerInstance/containerGroups@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2018-08-01-preview`" + "value": "Namespace: `Microsoft.ContainerInstance` \nType: `containerGroups` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000030f", + "sortText": "000002a3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters@2018-08-01-preview'" + "newText": "'Microsoft.ContainerInstance/containerGroups@2019-12-01'" } }, { - "label": "'Microsoft.ContainerService/managedClusters@2019-02-01'", + "label": "'Microsoft.ContainerRegistry/registries/agentPools@2019-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/agentPools` \nAPI Version: `2019-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000030e", + "sortText": "000002b3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters@2019-02-01'" + "newText": "'Microsoft.ContainerRegistry/registries/agentPools@2019-06-01-preview'" } }, { - "label": "'Microsoft.ContainerService/managedClusters@2019-04-01'", + "label": "'Microsoft.ContainerRegistry/registries/buildTasks/steps@2018-02-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/buildTasks/steps` \nAPI Version: `2018-02-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000030d", + "sortText": "000002b5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters@2019-04-01'" + "newText": "'Microsoft.ContainerRegistry/registries/buildTasks/steps@2018-02-01-preview'" } }, { - "label": "'Microsoft.ContainerService/managedClusters@2019-06-01'", + "label": "'Microsoft.ContainerRegistry/registries/buildTasks@2018-02-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/buildTasks` \nAPI Version: `2018-02-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000030c", + "sortText": "000002b4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters@2019-06-01'" + "newText": "'Microsoft.ContainerRegistry/registries/buildTasks@2018-02-01-preview'" } }, { - "label": "'Microsoft.ContainerService/managedClusters@2019-08-01'", + "label": "'Microsoft.ContainerRegistry/registries/connectedRegistries@2020-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/connectedRegistries` \nAPI Version: `2020-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000030b", + "sortText": "000002b6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters@2019-08-01'" + "newText": "'Microsoft.ContainerRegistry/registries/connectedRegistries@2020-11-01-preview'" } }, { - "label": "'Microsoft.ContainerService/managedClusters@2019-10-01'", + "label": "'Microsoft.ContainerRegistry/registries/exportPipelines@2019-12-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2019-10-01`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/exportPipelines` \nAPI Version: `2019-12-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000030a", + "sortText": "000002b8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters@2019-10-01'" + "newText": "'Microsoft.ContainerRegistry/registries/exportPipelines@2019-12-01-preview'" } }, { - "label": "'Microsoft.ContainerService/managedClusters@2019-11-01'", + "label": "'Microsoft.ContainerRegistry/registries/exportPipelines@2020-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/exportPipelines` \nAPI Version: `2020-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000309", + "sortText": "000002b7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters@2019-11-01'" + "newText": "'Microsoft.ContainerRegistry/registries/exportPipelines@2020-11-01-preview'" } }, { - "label": "'Microsoft.ContainerService/managedClusters@2020-01-01'", + "label": "'Microsoft.ContainerRegistry/registries/importPipelines@2019-12-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/importPipelines` \nAPI Version: `2019-12-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000308", + "sortText": "000002ba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters@2020-01-01'" + "newText": "'Microsoft.ContainerRegistry/registries/importPipelines@2019-12-01-preview'" } }, { - "label": "'Microsoft.ContainerService/managedClusters@2020-02-01'", + "label": "'Microsoft.ContainerRegistry/registries/importPipelines@2020-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2020-02-01`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/importPipelines` \nAPI Version: `2020-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000307", + "sortText": "000002b9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters@2020-02-01'" + "newText": "'Microsoft.ContainerRegistry/registries/importPipelines@2020-11-01-preview'" } }, { - "label": "'Microsoft.ContainerService/managedClusters@2020-03-01'", + "label": "'Microsoft.ContainerRegistry/registries/pipelineRuns@2019-12-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/pipelineRuns` \nAPI Version: `2019-12-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000306", + "sortText": "000002bc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters@2020-03-01'" + "newText": "'Microsoft.ContainerRegistry/registries/pipelineRuns@2019-12-01-preview'" } }, { - "label": "'Microsoft.ContainerService/managedClusters@2020-04-01'", + "label": "'Microsoft.ContainerRegistry/registries/pipelineRuns@2020-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/pipelineRuns` \nAPI Version: `2020-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000305", + "sortText": "000002bb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters@2020-04-01'" + "newText": "'Microsoft.ContainerRegistry/registries/pipelineRuns@2020-11-01-preview'" } }, { - "label": "'Microsoft.ContainerService/managedClusters@2020-06-01'", + "label": "'Microsoft.ContainerRegistry/registries/privateEndpointConnections@2019-12-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/privateEndpointConnections` \nAPI Version: `2019-12-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000304", + "sortText": "000002be", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters@2020-06-01'" + "newText": "'Microsoft.ContainerRegistry/registries/privateEndpointConnections@2019-12-01-preview'" } }, { - "label": "'Microsoft.ContainerService/managedClusters@2020-07-01'", + "label": "'Microsoft.ContainerRegistry/registries/privateEndpointConnections@2020-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2020-07-01`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/privateEndpointConnections` \nAPI Version: `2020-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000303", + "sortText": "000002bd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters@2020-07-01'" + "newText": "'Microsoft.ContainerRegistry/registries/privateEndpointConnections@2020-11-01-preview'" } }, { - "label": "'Microsoft.ContainerService/managedClusters@2020-09-01'", + "label": "'Microsoft.ContainerRegistry/registries/replications@2017-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2020-09-01`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/replications` \nAPI Version: `2017-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000302", + "sortText": "000002c3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters@2020-09-01'" + "newText": "'Microsoft.ContainerRegistry/registries/replications@2017-06-01-preview'" } }, { - "label": "'Microsoft.ContainerService/managedClusters@2020-11-01'", + "label": "'Microsoft.ContainerRegistry/registries/replications@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2020-11-01`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/replications` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000301", + "sortText": "000002c2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/managedClusters@2020-11-01'" + "newText": "'Microsoft.ContainerRegistry/registries/replications@2017-10-01'" } }, { - "label": "'Microsoft.ContainerService/openShiftManagedClusters@2018-09-30-preview'", + "label": "'Microsoft.ContainerRegistry/registries/replications@2019-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `openShiftManagedClusters` \nAPI Version: `2018-09-30-preview`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/replications` \nAPI Version: `2019-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000327", + "sortText": "000002c1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/openShiftManagedClusters@2018-09-30-preview'" + "newText": "'Microsoft.ContainerRegistry/registries/replications@2019-05-01'" } }, { - "label": "'Microsoft.ContainerService/openShiftManagedClusters@2019-04-30'", + "label": "'Microsoft.ContainerRegistry/registries/replications@2019-12-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `openShiftManagedClusters` \nAPI Version: `2019-04-30`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/replications` \nAPI Version: `2019-12-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000326", + "sortText": "000002c0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/openShiftManagedClusters@2019-04-30'" + "newText": "'Microsoft.ContainerRegistry/registries/replications@2019-12-01-preview'" } }, { - "label": "'Microsoft.ContainerService/openShiftManagedClusters@2019-09-30-preview'", + "label": "'Microsoft.ContainerRegistry/registries/replications@2020-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `openShiftManagedClusters` \nAPI Version: `2019-09-30-preview`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/replications` \nAPI Version: `2020-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000325", + "sortText": "000002bf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/openShiftManagedClusters@2019-09-30-preview'" + "newText": "'Microsoft.ContainerRegistry/registries/replications@2020-11-01-preview'" } }, { - "label": "'Microsoft.ContainerService/openShiftManagedClusters@2019-10-27-preview'", + "label": "'Microsoft.ContainerRegistry/registries/scopeMaps@2019-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ContainerService` \nType: `openShiftManagedClusters` \nAPI Version: `2019-10-27-preview`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/scopeMaps` \nAPI Version: `2019-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000324", + "sortText": "000002c5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ContainerService/openShiftManagedClusters@2019-10-27-preview'" + "newText": "'Microsoft.ContainerRegistry/registries/scopeMaps@2019-05-01-preview'" } }, { - "label": "'Microsoft.CostManagement/budgets@2019-04-01-preview'", + "label": "'Microsoft.ContainerRegistry/registries/scopeMaps@2020-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CostManagement` \nType: `budgets` \nAPI Version: `2019-04-01-preview`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/scopeMaps` \nAPI Version: `2020-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000328", + "sortText": "000002c4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CostManagement/budgets@2019-04-01-preview'" + "newText": "'Microsoft.ContainerRegistry/registries/scopeMaps@2020-11-01-preview'" } }, { - "label": "'Microsoft.CostManagement/cloudConnectors@2019-03-01-preview'", + "label": "'Microsoft.ContainerRegistry/registries/taskRuns@2019-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CostManagement` \nType: `cloudConnectors` \nAPI Version: `2019-03-01-preview`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/taskRuns` \nAPI Version: `2019-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000329", + "sortText": "000002c6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CostManagement/cloudConnectors@2019-03-01-preview'" + "newText": "'Microsoft.ContainerRegistry/registries/taskRuns@2019-06-01-preview'" } }, { - "label": "'Microsoft.CostManagement/connectors@2018-08-01-preview'", + "label": "'Microsoft.ContainerRegistry/registries/tasks@2018-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CostManagement` \nType: `connectors` \nAPI Version: `2018-08-01-preview`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/tasks` \nAPI Version: `2018-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000032a", + "sortText": "000002c9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CostManagement/connectors@2018-08-01-preview'" + "newText": "'Microsoft.ContainerRegistry/registries/tasks@2018-09-01'" } }, { - "label": "'Microsoft.CostManagement/costAllocationRules@2020-03-01-preview'", + "label": "'Microsoft.ContainerRegistry/registries/tasks@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CostManagement` \nType: `costAllocationRules` \nAPI Version: `2020-03-01-preview`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/tasks` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000032b", + "sortText": "000002c8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CostManagement/costAllocationRules@2020-03-01-preview'" + "newText": "'Microsoft.ContainerRegistry/registries/tasks@2019-04-01'" } }, { - "label": "'Microsoft.CostManagement/exports@2019-01-01'", + "label": "'Microsoft.ContainerRegistry/registries/tasks@2019-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CostManagement` \nType: `exports` \nAPI Version: `2019-01-01`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/tasks` \nAPI Version: `2019-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000032f", + "sortText": "000002c7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CostManagement/exports@2019-01-01'" + "newText": "'Microsoft.ContainerRegistry/registries/tasks@2019-06-01-preview'" } }, { - "label": "'Microsoft.CostManagement/exports@2019-09-01'", + "label": "'Microsoft.ContainerRegistry/registries/tokens@2019-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CostManagement` \nType: `exports` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/tokens` \nAPI Version: `2019-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000032e", + "sortText": "000002cb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CostManagement/exports@2019-09-01'" + "newText": "'Microsoft.ContainerRegistry/registries/tokens@2019-05-01-preview'" } }, { - "label": "'Microsoft.CostManagement/exports@2019-10-01'", + "label": "'Microsoft.ContainerRegistry/registries/tokens@2020-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CostManagement` \nType: `exports` \nAPI Version: `2019-10-01`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/tokens` \nAPI Version: `2020-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000032d", + "sortText": "000002ca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CostManagement/exports@2019-10-01'" + "newText": "'Microsoft.ContainerRegistry/registries/tokens@2020-11-01-preview'" } }, { - "label": "'Microsoft.CostManagement/exports@2019-11-01'", + "label": "'Microsoft.ContainerRegistry/registries/webhooks@2017-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CostManagement` \nType: `exports` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/webhooks` \nAPI Version: `2017-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000032c", + "sortText": "000002d0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CostManagement/exports@2019-11-01'" + "newText": "'Microsoft.ContainerRegistry/registries/webhooks@2017-06-01-preview'" } }, { - "label": "'Microsoft.CostManagement/reportconfigs@2018-05-31'", + "label": "'Microsoft.ContainerRegistry/registries/webhooks@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CostManagement` \nType: `reportconfigs` \nAPI Version: `2018-05-31`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/webhooks` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000330", + "sortText": "000002cf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CostManagement/reportconfigs@2018-05-31'" + "newText": "'Microsoft.ContainerRegistry/registries/webhooks@2017-10-01'" } }, { - "label": "'Microsoft.CostManagement/reports@2018-08-01-preview'", + "label": "'Microsoft.ContainerRegistry/registries/webhooks@2019-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CostManagement` \nType: `reports` \nAPI Version: `2018-08-01-preview`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/webhooks` \nAPI Version: `2019-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000331", + "sortText": "000002ce", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CostManagement/reports@2018-08-01-preview'" + "newText": "'Microsoft.ContainerRegistry/registries/webhooks@2019-05-01'" } }, { - "label": "'Microsoft.CostManagement/showbackRules@2019-03-01-preview'", + "label": "'Microsoft.ContainerRegistry/registries/webhooks@2019-12-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CostManagement` \nType: `showbackRules` \nAPI Version: `2019-03-01-preview`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/webhooks` \nAPI Version: `2019-12-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000332", + "sortText": "000002cd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CostManagement/showbackRules@2019-03-01-preview'" + "newText": "'Microsoft.ContainerRegistry/registries/webhooks@2019-12-01-preview'" } }, { - "label": "'Microsoft.CostManagement/views@2019-04-01-preview'", + "label": "'Microsoft.ContainerRegistry/registries/webhooks@2020-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CostManagement` \nType: `views` \nAPI Version: `2019-04-01-preview`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries/webhooks` \nAPI Version: `2020-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000335", + "sortText": "000002cc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CostManagement/views@2019-04-01-preview'" + "newText": "'Microsoft.ContainerRegistry/registries/webhooks@2020-11-01-preview'" } }, { - "label": "'Microsoft.CostManagement/views@2019-11-01'", + "label": "'Microsoft.ContainerRegistry/registries@2016-06-27-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CostManagement` \nType: `views` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries` \nAPI Version: `2016-06-27-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000334", + "sortText": "000002b2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CostManagement/views@2019-11-01'" + "newText": "'Microsoft.ContainerRegistry/registries@2016-06-27-preview'" } }, { - "label": "'Microsoft.CostManagement/views@2020-06-01'", + "label": "'Microsoft.ContainerRegistry/registries@2017-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CostManagement` \nType: `views` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries` \nAPI Version: `2017-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000333", + "sortText": "000002b1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CostManagement/views@2020-06-01'" + "newText": "'Microsoft.ContainerRegistry/registries@2017-03-01'" } }, { - "label": "'Microsoft.CustomProviders/associations@2018-09-01-preview'", + "label": "'Microsoft.ContainerRegistry/registries@2017-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CustomProviders` \nType: `associations` \nAPI Version: `2018-09-01-preview`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries` \nAPI Version: `2017-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000034f", + "sortText": "000002b0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CustomProviders/associations@2018-09-01-preview'" + "newText": "'Microsoft.ContainerRegistry/registries@2017-06-01-preview'" } }, { - "label": "'Microsoft.CustomProviders/resourceProviders@2018-09-01-preview'", + "label": "'Microsoft.ContainerRegistry/registries@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CustomProviders` \nType: `resourceProviders` \nAPI Version: `2018-09-01-preview`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000350", + "sortText": "000002af", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CustomProviders/resourceProviders@2018-09-01-preview'" + "newText": "'Microsoft.ContainerRegistry/registries@2017-10-01'" } }, { - "label": "'Microsoft.CustomerInsights/hubs/authorizationPolicies@2017-01-01'", + "label": "'Microsoft.ContainerRegistry/registries@2019-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/authorizationPolicies` \nAPI Version: `2017-01-01`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries` \nAPI Version: `2019-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000339", + "sortText": "000002ae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CustomerInsights/hubs/authorizationPolicies@2017-01-01'" + "newText": "'Microsoft.ContainerRegistry/registries@2019-05-01'" } }, { - "label": "'Microsoft.CustomerInsights/hubs/authorizationPolicies@2017-04-26'", + "label": "'Microsoft.ContainerRegistry/registries@2019-12-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/authorizationPolicies` \nAPI Version: `2017-04-26`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries` \nAPI Version: `2019-12-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000338", + "sortText": "000002ad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CustomerInsights/hubs/authorizationPolicies@2017-04-26'" + "newText": "'Microsoft.ContainerRegistry/registries@2019-12-01-preview'" } }, { - "label": "'Microsoft.CustomerInsights/hubs/connectors/mappings@2017-01-01'", + "label": "'Microsoft.ContainerRegistry/registries@2020-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/connectors/mappings` \nAPI Version: `2017-01-01`" + "value": "Namespace: `Microsoft.ContainerRegistry` \nType: `registries` \nAPI Version: `2020-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000033d", + "sortText": "000002ac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CustomerInsights/hubs/connectors/mappings@2017-01-01'" + "newText": "'Microsoft.ContainerRegistry/registries@2020-11-01-preview'" } }, { - "label": "'Microsoft.CustomerInsights/hubs/connectors/mappings@2017-04-26'", + "label": "'Microsoft.ContainerService/containerServices@2015-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/connectors/mappings` \nAPI Version: `2017-04-26`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `containerServices` \nAPI Version: `2015-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000033c", + "sortText": "000002d5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CustomerInsights/hubs/connectors/mappings@2017-04-26'" + "newText": "'Microsoft.ContainerService/containerServices@2015-11-01-preview'" } }, { - "label": "'Microsoft.CustomerInsights/hubs/connectors@2017-01-01'", + "label": "'Microsoft.ContainerService/containerServices@2016-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/connectors` \nAPI Version: `2017-01-01`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `containerServices` \nAPI Version: `2016-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "0000033b", + "sortText": "000002d4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CustomerInsights/hubs/connectors@2017-01-01'" + "newText": "'Microsoft.ContainerService/containerServices@2016-03-30'" } }, { - "label": "'Microsoft.CustomerInsights/hubs/connectors@2017-04-26'", + "label": "'Microsoft.ContainerService/containerServices@2016-09-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/connectors` \nAPI Version: `2017-04-26`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `containerServices` \nAPI Version: `2016-09-30`" }, "deprecated": false, "preselect": false, - "sortText": "0000033a", + "sortText": "000002d3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CustomerInsights/hubs/connectors@2017-04-26'" + "newText": "'Microsoft.ContainerService/containerServices@2016-09-30'" } }, { - "label": "'Microsoft.CustomerInsights/hubs/interactions@2017-01-01'", + "label": "'Microsoft.ContainerService/containerServices@2017-01-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/interactions` \nAPI Version: `2017-01-01`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `containerServices` \nAPI Version: `2017-01-31`" }, "deprecated": false, "preselect": false, - "sortText": "0000033f", + "sortText": "000002d2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CustomerInsights/hubs/interactions@2017-01-01'" + "newText": "'Microsoft.ContainerService/containerServices@2017-01-31'" } }, { - "label": "'Microsoft.CustomerInsights/hubs/interactions@2017-04-26'", + "label": "'Microsoft.ContainerService/containerServices@2017-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/interactions` \nAPI Version: `2017-04-26`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `containerServices` \nAPI Version: `2017-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000033e", + "sortText": "000002d1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CustomerInsights/hubs/interactions@2017-04-26'" + "newText": "'Microsoft.ContainerService/containerServices@2017-07-01'" } }, { - "label": "'Microsoft.CustomerInsights/hubs/kpi@2017-01-01'", + "label": "'Microsoft.ContainerService/managedClusters/agentPools@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/kpi` \nAPI Version: `2017-01-01`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000341", + "sortText": "000002f6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CustomerInsights/hubs/kpi@2017-01-01'" + "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2019-02-01'" } }, { - "label": "'Microsoft.CustomerInsights/hubs/kpi@2017-04-26'", + "label": "'Microsoft.ContainerService/managedClusters/agentPools@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/kpi` \nAPI Version: `2017-04-26`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000340", + "sortText": "000002f5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CustomerInsights/hubs/kpi@2017-04-26'" + "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2019-04-01'" } }, { - "label": "'Microsoft.CustomerInsights/hubs/links@2017-01-01'", + "label": "'Microsoft.ContainerService/managedClusters/agentPools@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/links` \nAPI Version: `2017-01-01`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000343", + "sortText": "000002f4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CustomerInsights/hubs/links@2017-01-01'" + "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2019-06-01'" } }, { - "label": "'Microsoft.CustomerInsights/hubs/links@2017-04-26'", + "label": "'Microsoft.ContainerService/managedClusters/agentPools@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/links` \nAPI Version: `2017-04-26`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000342", + "sortText": "000002f3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CustomerInsights/hubs/links@2017-04-26'" + "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2019-08-01'" } }, { - "label": "'Microsoft.CustomerInsights/hubs/predictions@2017-04-26'", + "label": "'Microsoft.ContainerService/managedClusters/agentPools@2019-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/predictions` \nAPI Version: `2017-04-26`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2019-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000344", + "sortText": "000002f2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CustomerInsights/hubs/predictions@2017-04-26'" + "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2019-10-01'" } }, { - "label": "'Microsoft.CustomerInsights/hubs/profiles@2017-01-01'", + "label": "'Microsoft.ContainerService/managedClusters/agentPools@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/profiles` \nAPI Version: `2017-01-01`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000346", + "sortText": "000002f1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CustomerInsights/hubs/profiles@2017-01-01'" + "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2019-11-01'" } }, { - "label": "'Microsoft.CustomerInsights/hubs/profiles@2017-04-26'", + "label": "'Microsoft.ContainerService/managedClusters/agentPools@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/profiles` \nAPI Version: `2017-04-26`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000345", + "sortText": "000002f0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CustomerInsights/hubs/profiles@2017-04-26'" + "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2020-01-01'" } }, { - "label": "'Microsoft.CustomerInsights/hubs/relationshipLinks@2017-01-01'", + "label": "'Microsoft.ContainerService/managedClusters/agentPools@2020-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/relationshipLinks` \nAPI Version: `2017-01-01`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2020-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000348", + "sortText": "000002ef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CustomerInsights/hubs/relationshipLinks@2017-01-01'" + "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2020-02-01'" } }, { - "label": "'Microsoft.CustomerInsights/hubs/relationshipLinks@2017-04-26'", + "label": "'Microsoft.ContainerService/managedClusters/agentPools@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/relationshipLinks` \nAPI Version: `2017-04-26`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000347", + "sortText": "000002ee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CustomerInsights/hubs/relationshipLinks@2017-04-26'" + "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2020-03-01'" } }, { - "label": "'Microsoft.CustomerInsights/hubs/relationships@2017-01-01'", + "label": "'Microsoft.ContainerService/managedClusters/agentPools@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/relationships` \nAPI Version: `2017-01-01`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000034a", + "sortText": "000002ed", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CustomerInsights/hubs/relationships@2017-01-01'" + "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2020-04-01'" } }, { - "label": "'Microsoft.CustomerInsights/hubs/relationships@2017-04-26'", + "label": "'Microsoft.ContainerService/managedClusters/agentPools@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/relationships` \nAPI Version: `2017-04-26`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000349", + "sortText": "000002ec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CustomerInsights/hubs/relationships@2017-04-26'" + "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2020-06-01'" } }, { - "label": "'Microsoft.CustomerInsights/hubs/roleAssignments@2017-01-01'", + "label": "'Microsoft.ContainerService/managedClusters/agentPools@2020-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/roleAssignments` \nAPI Version: `2017-01-01`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2020-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000034c", + "sortText": "000002eb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CustomerInsights/hubs/roleAssignments@2017-01-01'" + "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2020-07-01'" } }, { - "label": "'Microsoft.CustomerInsights/hubs/roleAssignments@2017-04-26'", + "label": "'Microsoft.ContainerService/managedClusters/agentPools@2020-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/roleAssignments` \nAPI Version: `2017-04-26`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2020-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000034b", + "sortText": "000002ea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CustomerInsights/hubs/roleAssignments@2017-04-26'" + "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2020-09-01'" } }, { - "label": "'Microsoft.CustomerInsights/hubs/views@2017-01-01'", + "label": "'Microsoft.ContainerService/managedClusters/agentPools@2020-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/views` \nAPI Version: `2017-01-01`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2020-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000034e", + "sortText": "000002e9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CustomerInsights/hubs/views@2017-01-01'" + "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2020-11-01'" } }, { - "label": "'Microsoft.CustomerInsights/hubs/views@2017-04-26'", + "label": "'Microsoft.ContainerService/managedClusters/agentPools@2020-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/views` \nAPI Version: `2017-04-26`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/agentPools` \nAPI Version: `2020-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000034d", + "sortText": "000002e8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CustomerInsights/hubs/views@2017-04-26'" + "newText": "'Microsoft.ContainerService/managedClusters/agentPools@2020-12-01'" } }, { - "label": "'Microsoft.CustomerInsights/hubs@2017-01-01'", + "label": "'Microsoft.ContainerService/managedClusters/maintenanceConfigurations@2020-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs` \nAPI Version: `2017-01-01`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/maintenanceConfigurations` \nAPI Version: `2020-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000337", + "sortText": "000002f7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CustomerInsights/hubs@2017-01-01'" + "newText": "'Microsoft.ContainerService/managedClusters/maintenanceConfigurations@2020-12-01'" } }, { - "label": "'Microsoft.CustomerInsights/hubs@2017-04-26'", + "label": "'Microsoft.ContainerService/managedClusters/privateEndpointConnections@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs` \nAPI Version: `2017-04-26`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/privateEndpointConnections` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000336", + "sortText": "000002fc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.CustomerInsights/hubs@2017-04-26'" + "newText": "'Microsoft.ContainerService/managedClusters/privateEndpointConnections@2020-06-01'" } }, { - "label": "'Microsoft.DBForMariaDB/servers/configurations@2018-06-01'", + "label": "'Microsoft.ContainerService/managedClusters/privateEndpointConnections@2020-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForMariaDB` \nType: `servers/configurations` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/privateEndpointConnections` \nAPI Version: `2020-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003c1", + "sortText": "000002fb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForMariaDB/servers/configurations@2018-06-01'" + "newText": "'Microsoft.ContainerService/managedClusters/privateEndpointConnections@2020-07-01'" } }, { - "label": "'Microsoft.DBForMariaDB/servers/configurations@2018-06-01-preview'", + "label": "'Microsoft.ContainerService/managedClusters/privateEndpointConnections@2020-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForMariaDB` \nType: `servers/configurations` \nAPI Version: `2018-06-01-preview`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/privateEndpointConnections` \nAPI Version: `2020-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003c0", + "sortText": "000002fa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForMariaDB/servers/configurations@2018-06-01-preview'" + "newText": "'Microsoft.ContainerService/managedClusters/privateEndpointConnections@2020-09-01'" } }, { - "label": "'Microsoft.DBForMariaDB/servers/databases@2018-06-01'", + "label": "'Microsoft.ContainerService/managedClusters/privateEndpointConnections@2020-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForMariaDB` \nType: `servers/databases` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/privateEndpointConnections` \nAPI Version: `2020-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003c3", + "sortText": "000002f9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForMariaDB/servers/databases@2018-06-01'" + "newText": "'Microsoft.ContainerService/managedClusters/privateEndpointConnections@2020-11-01'" } }, { - "label": "'Microsoft.DBForMariaDB/servers/databases@2018-06-01-preview'", + "label": "'Microsoft.ContainerService/managedClusters/privateEndpointConnections@2020-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForMariaDB` \nType: `servers/databases` \nAPI Version: `2018-06-01-preview`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters/privateEndpointConnections` \nAPI Version: `2020-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003c2", + "sortText": "000002f8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForMariaDB/servers/databases@2018-06-01-preview'" + "newText": "'Microsoft.ContainerService/managedClusters/privateEndpointConnections@2020-12-01'" } }, { - "label": "'Microsoft.DBForMariaDB/servers/firewallRules@2018-06-01'", + "label": "'Microsoft.ContainerService/managedClusters@2017-08-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForMariaDB` \nType: `servers/firewallRules` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2017-08-31`" }, "deprecated": false, "preselect": false, - "sortText": "000003c5", + "sortText": "000002e7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForMariaDB/servers/firewallRules@2018-06-01'" + "newText": "'Microsoft.ContainerService/managedClusters@2017-08-31'" } }, { - "label": "'Microsoft.DBForMariaDB/servers/firewallRules@2018-06-01-preview'", + "label": "'Microsoft.ContainerService/managedClusters@2018-03-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForMariaDB` \nType: `servers/firewallRules` \nAPI Version: `2018-06-01-preview`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2018-03-31`" }, "deprecated": false, "preselect": false, - "sortText": "000003c4", + "sortText": "000002e6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForMariaDB/servers/firewallRules@2018-06-01-preview'" + "newText": "'Microsoft.ContainerService/managedClusters@2018-03-31'" } }, { - "label": "'Microsoft.DBForMariaDB/servers/securityAlertPolicies@2018-06-01-preview'", + "label": "'Microsoft.ContainerService/managedClusters@2018-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForMariaDB` \nType: `servers/securityAlertPolicies` \nAPI Version: `2018-06-01-preview`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2018-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000003c7", + "sortText": "000002e5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForMariaDB/servers/securityAlertPolicies@2018-06-01-preview'" + "newText": "'Microsoft.ContainerService/managedClusters@2018-08-01-preview'" } }, { - "label": "'Microsoft.DBForMariaDB/servers/virtualNetworkRules@2018-06-01'", + "label": "'Microsoft.ContainerService/managedClusters@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForMariaDB` \nType: `servers/virtualNetworkRules` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003ca", + "sortText": "000002e4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForMariaDB/servers/virtualNetworkRules@2018-06-01'" + "newText": "'Microsoft.ContainerService/managedClusters@2019-02-01'" } }, { - "label": "'Microsoft.DBForMariaDB/servers/virtualNetworkRules@2018-06-01-preview'", + "label": "'Microsoft.ContainerService/managedClusters@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForMariaDB` \nType: `servers/virtualNetworkRules` \nAPI Version: `2018-06-01-preview`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003c9", + "sortText": "000002e3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForMariaDB/servers/virtualNetworkRules@2018-06-01-preview'" + "newText": "'Microsoft.ContainerService/managedClusters@2019-04-01'" } }, { - "label": "'Microsoft.DBForMariaDB/servers@2018-06-01'", + "label": "'Microsoft.ContainerService/managedClusters@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForMariaDB` \nType: `servers` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003bf", + "sortText": "000002e2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForMariaDB/servers@2018-06-01'" + "newText": "'Microsoft.ContainerService/managedClusters@2019-06-01'" } }, { - "label": "'Microsoft.DBForMariaDB/servers@2018-06-01-preview'", + "label": "'Microsoft.ContainerService/managedClusters@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForMariaDB` \nType: `servers` \nAPI Version: `2018-06-01-preview`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003be", + "sortText": "000002e1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForMariaDB/servers@2018-06-01-preview'" + "newText": "'Microsoft.ContainerService/managedClusters@2019-08-01'" } }, { - "label": "'Microsoft.DBForMySQL/servers/Administrators@2017-12-01'", + "label": "'Microsoft.ContainerService/managedClusters@2019-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForMySQL` \nType: `servers/Administrators` \nAPI Version: `2017-12-01`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2019-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003ce", + "sortText": "000002e0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForMySQL/servers/Administrators@2017-12-01'" + "newText": "'Microsoft.ContainerService/managedClusters@2019-10-01'" } }, { - "label": "'Microsoft.DBForMySQL/servers/Administrators@2017-12-01-preview'", + "label": "'Microsoft.ContainerService/managedClusters@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForMySQL` \nType: `servers/Administrators` \nAPI Version: `2017-12-01-preview`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003cd", + "sortText": "000002df", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForMySQL/servers/Administrators@2017-12-01-preview'" + "newText": "'Microsoft.ContainerService/managedClusters@2019-11-01'" } }, { - "label": "'Microsoft.DBForMySQL/servers/configurations@2017-12-01'", + "label": "'Microsoft.ContainerService/managedClusters@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForMySQL` \nType: `servers/configurations` \nAPI Version: `2017-12-01`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003d0", + "sortText": "000002de", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForMySQL/servers/configurations@2017-12-01'" + "newText": "'Microsoft.ContainerService/managedClusters@2020-01-01'" } }, { - "label": "'Microsoft.DBForMySQL/servers/configurations@2017-12-01-preview'", + "label": "'Microsoft.ContainerService/managedClusters@2020-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForMySQL` \nType: `servers/configurations` \nAPI Version: `2017-12-01-preview`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2020-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003cf", + "sortText": "000002dd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForMySQL/servers/configurations@2017-12-01-preview'" + "newText": "'Microsoft.ContainerService/managedClusters@2020-02-01'" } }, { - "label": "'Microsoft.DBForMySQL/servers/databases@2017-12-01'", + "label": "'Microsoft.ContainerService/managedClusters@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForMySQL` \nType: `servers/databases` \nAPI Version: `2017-12-01`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003d2", + "sortText": "000002dc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForMySQL/servers/databases@2017-12-01'" + "newText": "'Microsoft.ContainerService/managedClusters@2020-03-01'" } }, { - "label": "'Microsoft.DBForMySQL/servers/databases@2017-12-01-preview'", + "label": "'Microsoft.ContainerService/managedClusters@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForMySQL` \nType: `servers/databases` \nAPI Version: `2017-12-01-preview`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003d1", + "sortText": "000002db", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForMySQL/servers/databases@2017-12-01-preview'" + "newText": "'Microsoft.ContainerService/managedClusters@2020-04-01'" } }, { - "label": "'Microsoft.DBForMySQL/servers/firewallRules@2017-12-01'", + "label": "'Microsoft.ContainerService/managedClusters@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForMySQL` \nType: `servers/firewallRules` \nAPI Version: `2017-12-01`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003d4", + "sortText": "000002da", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForMySQL/servers/firewallRules@2017-12-01'" + "newText": "'Microsoft.ContainerService/managedClusters@2020-06-01'" } }, { - "label": "'Microsoft.DBForMySQL/servers/firewallRules@2017-12-01-preview'", + "label": "'Microsoft.ContainerService/managedClusters@2020-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForMySQL` \nType: `servers/firewallRules` \nAPI Version: `2017-12-01-preview`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2020-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003d3", + "sortText": "000002d9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForMySQL/servers/firewallRules@2017-12-01-preview'" + "newText": "'Microsoft.ContainerService/managedClusters@2020-07-01'" } }, { - "label": "'Microsoft.DBForMySQL/servers/securityAlertPolicies@2017-12-01-preview'", + "label": "'Microsoft.ContainerService/managedClusters@2020-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForMySQL` \nType: `servers/securityAlertPolicies` \nAPI Version: `2017-12-01-preview`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2020-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003d7", + "sortText": "000002d8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForMySQL/servers/securityAlertPolicies@2017-12-01-preview'" + "newText": "'Microsoft.ContainerService/managedClusters@2020-09-01'" } }, { - "label": "'Microsoft.DBForMySQL/servers/virtualNetworkRules@2017-12-01'", + "label": "'Microsoft.ContainerService/managedClusters@2020-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForMySQL` \nType: `servers/virtualNetworkRules` \nAPI Version: `2017-12-01`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2020-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003da", + "sortText": "000002d7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForMySQL/servers/virtualNetworkRules@2017-12-01'" + "newText": "'Microsoft.ContainerService/managedClusters@2020-11-01'" } }, { - "label": "'Microsoft.DBForMySQL/servers/virtualNetworkRules@2017-12-01-preview'", + "label": "'Microsoft.ContainerService/managedClusters@2020-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForMySQL` \nType: `servers/virtualNetworkRules` \nAPI Version: `2017-12-01-preview`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `managedClusters` \nAPI Version: `2020-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003d9", + "sortText": "000002d6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForMySQL/servers/virtualNetworkRules@2017-12-01-preview'" + "newText": "'Microsoft.ContainerService/managedClusters@2020-12-01'" } }, { - "label": "'Microsoft.DBForMySQL/servers@2017-12-01'", + "label": "'Microsoft.ContainerService/openShiftManagedClusters@2018-09-30-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForMySQL` \nType: `servers` \nAPI Version: `2017-12-01`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `openShiftManagedClusters` \nAPI Version: `2018-09-30-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000003cc", + "sortText": "00000300", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForMySQL/servers@2017-12-01'" + "newText": "'Microsoft.ContainerService/openShiftManagedClusters@2018-09-30-preview'" } }, { - "label": "'Microsoft.DBForMySQL/servers@2017-12-01-preview'", + "label": "'Microsoft.ContainerService/openShiftManagedClusters@2019-04-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForMySQL` \nType: `servers` \nAPI Version: `2017-12-01-preview`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `openShiftManagedClusters` \nAPI Version: `2019-04-30`" }, "deprecated": false, "preselect": false, - "sortText": "000003cb", + "sortText": "000002ff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForMySQL/servers@2017-12-01-preview'" + "newText": "'Microsoft.ContainerService/openShiftManagedClusters@2019-04-30'" } }, { - "label": "'Microsoft.DBForPostgreSQL/servers/Administrators@2017-12-01'", + "label": "'Microsoft.ContainerService/openShiftManagedClusters@2019-09-30-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForPostgreSQL` \nType: `servers/Administrators` \nAPI Version: `2017-12-01`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `openShiftManagedClusters` \nAPI Version: `2019-09-30-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000003e1", + "sortText": "000002fe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForPostgreSQL/servers/Administrators@2017-12-01'" + "newText": "'Microsoft.ContainerService/openShiftManagedClusters@2019-09-30-preview'" } }, { - "label": "'Microsoft.DBForPostgreSQL/servers/Administrators@2017-12-01-preview'", + "label": "'Microsoft.ContainerService/openShiftManagedClusters@2019-10-27-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForPostgreSQL` \nType: `servers/Administrators` \nAPI Version: `2017-12-01-preview`" + "value": "Namespace: `Microsoft.ContainerService` \nType: `openShiftManagedClusters` \nAPI Version: `2019-10-27-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000003e0", + "sortText": "000002fd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForPostgreSQL/servers/Administrators@2017-12-01-preview'" + "newText": "'Microsoft.ContainerService/openShiftManagedClusters@2019-10-27-preview'" } }, { - "label": "'Microsoft.DBForPostgreSQL/servers/configurations@2017-12-01'", + "label": "'Microsoft.CostManagement/budgets@2019-04-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForPostgreSQL` \nType: `servers/configurations` \nAPI Version: `2017-12-01`" + "value": "Namespace: `Microsoft.CostManagement` \nType: `budgets` \nAPI Version: `2019-04-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000003e3", + "sortText": "00000301", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForPostgreSQL/servers/configurations@2017-12-01'" + "newText": "'Microsoft.CostManagement/budgets@2019-04-01-preview'" } }, { - "label": "'Microsoft.DBForPostgreSQL/servers/configurations@2017-12-01-preview'", + "label": "'Microsoft.CostManagement/connectors@2018-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForPostgreSQL` \nType: `servers/configurations` \nAPI Version: `2017-12-01-preview`" + "value": "Namespace: `Microsoft.CostManagement` \nType: `connectors` \nAPI Version: `2018-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000003e2", + "sortText": "00000302", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForPostgreSQL/servers/configurations@2017-12-01-preview'" + "newText": "'Microsoft.CostManagement/connectors@2018-08-01-preview'" } }, { - "label": "'Microsoft.DBForPostgreSQL/servers/databases@2017-12-01'", + "label": "'Microsoft.CostManagement/exports@2019-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForPostgreSQL` \nType: `servers/databases` \nAPI Version: `2017-12-01`" + "value": "Namespace: `Microsoft.CostManagement` \nType: `exports` \nAPI Version: `2019-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003e5", + "sortText": "00000306", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForPostgreSQL/servers/databases@2017-12-01'" + "newText": "'Microsoft.CostManagement/exports@2019-01-01'" } }, { - "label": "'Microsoft.DBForPostgreSQL/servers/databases@2017-12-01-preview'", + "label": "'Microsoft.CostManagement/exports@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForPostgreSQL` \nType: `servers/databases` \nAPI Version: `2017-12-01-preview`" + "value": "Namespace: `Microsoft.CostManagement` \nType: `exports` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003e4", + "sortText": "00000305", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForPostgreSQL/servers/databases@2017-12-01-preview'" + "newText": "'Microsoft.CostManagement/exports@2019-09-01'" } }, { - "label": "'Microsoft.DBForPostgreSQL/servers/firewallRules@2017-12-01'", + "label": "'Microsoft.CostManagement/exports@2019-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForPostgreSQL` \nType: `servers/firewallRules` \nAPI Version: `2017-12-01`" + "value": "Namespace: `Microsoft.CostManagement` \nType: `exports` \nAPI Version: `2019-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003e7", + "sortText": "00000304", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForPostgreSQL/servers/firewallRules@2017-12-01'" + "newText": "'Microsoft.CostManagement/exports@2019-10-01'" } }, { - "label": "'Microsoft.DBForPostgreSQL/servers/firewallRules@2017-12-01-preview'", + "label": "'Microsoft.CostManagement/exports@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForPostgreSQL` \nType: `servers/firewallRules` \nAPI Version: `2017-12-01-preview`" + "value": "Namespace: `Microsoft.CostManagement` \nType: `exports` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003e6", + "sortText": "00000303", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForPostgreSQL/servers/firewallRules@2017-12-01-preview'" + "newText": "'Microsoft.CostManagement/exports@2019-11-01'" } }, { - "label": "'Microsoft.DBForPostgreSQL/servers/securityAlertPolicies@2017-12-01-preview'", + "label": "'Microsoft.CostManagement/reportconfigs@2018-05-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForPostgreSQL` \nType: `servers/securityAlertPolicies` \nAPI Version: `2017-12-01-preview`" + "value": "Namespace: `Microsoft.CostManagement` \nType: `reportconfigs` \nAPI Version: `2018-05-31`" }, "deprecated": false, "preselect": false, - "sortText": "000003ea", + "sortText": "00000307", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForPostgreSQL/servers/securityAlertPolicies@2017-12-01-preview'" + "newText": "'Microsoft.CostManagement/reportconfigs@2018-05-31'" } }, { - "label": "'Microsoft.DBForPostgreSQL/servers/virtualNetworkRules@2017-12-01'", + "label": "'Microsoft.CostManagement/reports@2018-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForPostgreSQL` \nType: `servers/virtualNetworkRules` \nAPI Version: `2017-12-01`" + "value": "Namespace: `Microsoft.CostManagement` \nType: `reports` \nAPI Version: `2018-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000003ed", + "sortText": "00000308", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForPostgreSQL/servers/virtualNetworkRules@2017-12-01'" + "newText": "'Microsoft.CostManagement/reports@2018-08-01-preview'" } }, { - "label": "'Microsoft.DBForPostgreSQL/servers/virtualNetworkRules@2017-12-01-preview'", + "label": "'Microsoft.CostManagement/views@2019-04-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForPostgreSQL` \nType: `servers/virtualNetworkRules` \nAPI Version: `2017-12-01-preview`" + "value": "Namespace: `Microsoft.CostManagement` \nType: `views` \nAPI Version: `2019-04-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000003ec", + "sortText": "0000030b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForPostgreSQL/servers/virtualNetworkRules@2017-12-01-preview'" + "newText": "'Microsoft.CostManagement/views@2019-04-01-preview'" } }, { - "label": "'Microsoft.DBForPostgreSQL/servers@2017-12-01'", + "label": "'Microsoft.CostManagement/views@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForPostgreSQL` \nType: `servers` \nAPI Version: `2017-12-01`" + "value": "Namespace: `Microsoft.CostManagement` \nType: `views` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003df", + "sortText": "0000030a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForPostgreSQL/servers@2017-12-01'" + "newText": "'Microsoft.CostManagement/views@2019-11-01'" } }, { - "label": "'Microsoft.DBForPostgreSQL/servers@2017-12-01-preview'", + "label": "'Microsoft.CostManagement/views@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForPostgreSQL` \nType: `servers` \nAPI Version: `2017-12-01-preview`" + "value": "Namespace: `Microsoft.CostManagement` \nType: `views` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003de", + "sortText": "00000309", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForPostgreSQL/servers@2017-12-01-preview'" + "newText": "'Microsoft.CostManagement/views@2020-06-01'" } }, { - "label": "'Microsoft.DBForPostgreSql/serverGroupsv2/firewallRules@2020-10-05-privatepreview'", + "label": "'Microsoft.CustomProviders/associations@2018-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForPostgreSql` \nType: `serverGroupsv2/firewallRules` \nAPI Version: `2020-10-05-privatepreview`" + "value": "Namespace: `Microsoft.CustomProviders` \nType: `associations` \nAPI Version: `2018-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000003dc", + "sortText": "00000325", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForPostgreSql/serverGroupsv2/firewallRules@2020-10-05-privatepreview'" + "newText": "'Microsoft.CustomProviders/associations@2018-09-01-preview'" } }, { - "label": "'Microsoft.DBForPostgreSql/serverGroupsv2/roles@2020-10-05-privatepreview'", + "label": "'Microsoft.CustomProviders/resourceProviders@2018-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForPostgreSql` \nType: `serverGroupsv2/roles` \nAPI Version: `2020-10-05-privatepreview`" + "value": "Namespace: `Microsoft.CustomProviders` \nType: `resourceProviders` \nAPI Version: `2018-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000003dd", + "sortText": "00000326", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForPostgreSql/serverGroupsv2/roles@2020-10-05-privatepreview'" + "newText": "'Microsoft.CustomProviders/resourceProviders@2018-09-01-preview'" } }, { - "label": "'Microsoft.DBForPostgreSql/serverGroupsv2@2020-10-05-privatepreview'", + "label": "'Microsoft.CustomerInsights/hubs/authorizationPolicies@2017-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBForPostgreSql` \nType: `serverGroupsv2` \nAPI Version: `2020-10-05-privatepreview`" + "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/authorizationPolicies` \nAPI Version: `2017-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003db", + "sortText": "0000030f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBForPostgreSql/serverGroupsv2@2020-10-05-privatepreview'" + "newText": "'Microsoft.CustomerInsights/hubs/authorizationPolicies@2017-01-01'" } }, { - "label": "'Microsoft.DBforMariaDB/servers/privateEndpointConnections@2018-06-01'", + "label": "'Microsoft.CustomerInsights/hubs/authorizationPolicies@2017-04-26'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBforMariaDB` \nType: `servers/privateEndpointConnections` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/authorizationPolicies` \nAPI Version: `2017-04-26`" }, "deprecated": false, "preselect": false, - "sortText": "000003c6", + "sortText": "0000030e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBforMariaDB/servers/privateEndpointConnections@2018-06-01'" + "newText": "'Microsoft.CustomerInsights/hubs/authorizationPolicies@2017-04-26'" } }, { - "label": "'Microsoft.DBforMariaDB/servers/securityAlertPolicies@2018-06-01'", + "label": "'Microsoft.CustomerInsights/hubs/connectors/mappings@2017-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBforMariaDB` \nType: `servers/securityAlertPolicies` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/connectors/mappings` \nAPI Version: `2017-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003c8", + "sortText": "00000313", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBforMariaDB/servers/securityAlertPolicies@2018-06-01'" + "newText": "'Microsoft.CustomerInsights/hubs/connectors/mappings@2017-01-01'" } }, { - "label": "'Microsoft.DBforMySQL/servers/keys@2020-01-01'", + "label": "'Microsoft.CustomerInsights/hubs/connectors/mappings@2017-04-26'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBforMySQL` \nType: `servers/keys` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/connectors/mappings` \nAPI Version: `2017-04-26`" }, "deprecated": false, "preselect": false, - "sortText": "000003d5", + "sortText": "00000312", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBforMySQL/servers/keys@2020-01-01'" + "newText": "'Microsoft.CustomerInsights/hubs/connectors/mappings@2017-04-26'" } }, { - "label": "'Microsoft.DBforMySQL/servers/privateEndpointConnections@2018-06-01'", + "label": "'Microsoft.CustomerInsights/hubs/connectors@2017-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBforMySQL` \nType: `servers/privateEndpointConnections` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/connectors` \nAPI Version: `2017-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003d6", + "sortText": "00000311", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBforMySQL/servers/privateEndpointConnections@2018-06-01'" + "newText": "'Microsoft.CustomerInsights/hubs/connectors@2017-01-01'" } }, { - "label": "'Microsoft.DBforMySQL/servers/securityAlertPolicies@2017-12-01'", + "label": "'Microsoft.CustomerInsights/hubs/connectors@2017-04-26'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBforMySQL` \nType: `servers/securityAlertPolicies` \nAPI Version: `2017-12-01`" + "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/connectors` \nAPI Version: `2017-04-26`" }, "deprecated": false, "preselect": false, - "sortText": "000003d8", + "sortText": "00000310", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBforMySQL/servers/securityAlertPolicies@2017-12-01'" + "newText": "'Microsoft.CustomerInsights/hubs/connectors@2017-04-26'" } }, { - "label": "'Microsoft.DBforPostgreSQL/servers/keys@2020-01-01'", + "label": "'Microsoft.CustomerInsights/hubs/interactions@2017-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBforPostgreSQL` \nType: `servers/keys` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/interactions` \nAPI Version: `2017-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003e8", + "sortText": "00000315", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBforPostgreSQL/servers/keys@2020-01-01'" + "newText": "'Microsoft.CustomerInsights/hubs/interactions@2017-01-01'" } }, { - "label": "'Microsoft.DBforPostgreSQL/servers/privateEndpointConnections@2018-06-01'", + "label": "'Microsoft.CustomerInsights/hubs/interactions@2017-04-26'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBforPostgreSQL` \nType: `servers/privateEndpointConnections` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/interactions` \nAPI Version: `2017-04-26`" }, "deprecated": false, "preselect": false, - "sortText": "000003e9", + "sortText": "00000314", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBforPostgreSQL/servers/privateEndpointConnections@2018-06-01'" + "newText": "'Microsoft.CustomerInsights/hubs/interactions@2017-04-26'" } }, { - "label": "'Microsoft.DBforPostgreSQL/servers/securityAlertPolicies@2017-12-01'", + "label": "'Microsoft.CustomerInsights/hubs/kpi@2017-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DBforPostgreSQL` \nType: `servers/securityAlertPolicies` \nAPI Version: `2017-12-01`" + "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/kpi` \nAPI Version: `2017-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003eb", + "sortText": "00000317", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DBforPostgreSQL/servers/securityAlertPolicies@2017-12-01'" + "newText": "'Microsoft.CustomerInsights/hubs/kpi@2017-01-01'" } }, { - "label": "'Microsoft.DataBox/jobs@2018-01-01'", + "label": "'Microsoft.CustomerInsights/hubs/kpi@2017-04-26'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBox` \nType: `jobs` \nAPI Version: `2018-01-01`" + "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/kpi` \nAPI Version: `2017-04-26`" }, "deprecated": false, "preselect": false, - "sortText": "00000354", + "sortText": "00000316", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBox/jobs@2018-01-01'" + "newText": "'Microsoft.CustomerInsights/hubs/kpi@2017-04-26'" } }, { - "label": "'Microsoft.DataBox/jobs@2019-09-01'", + "label": "'Microsoft.CustomerInsights/hubs/links@2017-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBox` \nType: `jobs` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/links` \nAPI Version: `2017-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000353", + "sortText": "00000319", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBox/jobs@2019-09-01'" + "newText": "'Microsoft.CustomerInsights/hubs/links@2017-01-01'" } }, { - "label": "'Microsoft.DataBox/jobs@2020-04-01'", + "label": "'Microsoft.CustomerInsights/hubs/links@2017-04-26'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBox` \nType: `jobs` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/links` \nAPI Version: `2017-04-26`" }, "deprecated": false, "preselect": false, - "sortText": "00000352", + "sortText": "00000318", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBox/jobs@2020-04-01'" + "newText": "'Microsoft.CustomerInsights/hubs/links@2017-04-26'" } }, { - "label": "'Microsoft.DataBox/jobs@2020-11-01'", + "label": "'Microsoft.CustomerInsights/hubs/predictions@2017-04-26'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBox` \nType: `jobs` \nAPI Version: `2020-11-01`" + "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/predictions` \nAPI Version: `2017-04-26`" }, "deprecated": false, "preselect": false, - "sortText": "00000351", + "sortText": "0000031a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBox/jobs@2020-11-01'" + "newText": "'Microsoft.CustomerInsights/hubs/predictions@2017-04-26'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/bandwidthSchedules@2019-03-01'", + "label": "'Microsoft.CustomerInsights/hubs/profiles@2017-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/bandwidthSchedules` \nAPI Version: `2019-03-01`" + "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/profiles` \nAPI Version: `2017-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000035c", + "sortText": "0000031c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/bandwidthSchedules@2019-03-01'" + "newText": "'Microsoft.CustomerInsights/hubs/profiles@2017-01-01'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/bandwidthSchedules@2019-07-01'", + "label": "'Microsoft.CustomerInsights/hubs/profiles@2017-04-26'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/bandwidthSchedules` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/profiles` \nAPI Version: `2017-04-26`" }, "deprecated": false, "preselect": false, - "sortText": "0000035b", + "sortText": "0000031b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/bandwidthSchedules@2019-07-01'" + "newText": "'Microsoft.CustomerInsights/hubs/profiles@2017-04-26'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/bandwidthSchedules@2019-08-01'", + "label": "'Microsoft.CustomerInsights/hubs/relationshipLinks@2017-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/bandwidthSchedules` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/relationshipLinks` \nAPI Version: `2017-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000035a", + "sortText": "0000031e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/bandwidthSchedules@2019-08-01'" + "newText": "'Microsoft.CustomerInsights/hubs/relationshipLinks@2017-01-01'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/bandwidthSchedules@2020-05-01-preview'", + "label": "'Microsoft.CustomerInsights/hubs/relationshipLinks@2017-04-26'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/bandwidthSchedules` \nAPI Version: `2020-05-01-preview`" + "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/relationshipLinks` \nAPI Version: `2017-04-26`" }, "deprecated": false, "preselect": false, - "sortText": "00000359", + "sortText": "0000031d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/bandwidthSchedules@2020-05-01-preview'" + "newText": "'Microsoft.CustomerInsights/hubs/relationshipLinks@2017-04-26'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/orders@2019-03-01'", + "label": "'Microsoft.CustomerInsights/hubs/relationships@2017-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/orders` \nAPI Version: `2019-03-01`" + "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/relationships` \nAPI Version: `2017-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000360", + "sortText": "00000320", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/orders@2019-03-01'" + "newText": "'Microsoft.CustomerInsights/hubs/relationships@2017-01-01'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/orders@2019-07-01'", + "label": "'Microsoft.CustomerInsights/hubs/relationships@2017-04-26'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/orders` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/relationships` \nAPI Version: `2017-04-26`" }, "deprecated": false, "preselect": false, - "sortText": "0000035f", + "sortText": "0000031f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/orders@2019-07-01'" + "newText": "'Microsoft.CustomerInsights/hubs/relationships@2017-04-26'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/orders@2019-08-01'", + "label": "'Microsoft.CustomerInsights/hubs/roleAssignments@2017-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/orders` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/roleAssignments` \nAPI Version: `2017-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000035e", + "sortText": "00000322", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/orders@2019-08-01'" + "newText": "'Microsoft.CustomerInsights/hubs/roleAssignments@2017-01-01'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/orders@2020-05-01-preview'", + "label": "'Microsoft.CustomerInsights/hubs/roleAssignments@2017-04-26'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/orders` \nAPI Version: `2020-05-01-preview`" + "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/roleAssignments` \nAPI Version: `2017-04-26`" }, "deprecated": false, "preselect": false, - "sortText": "0000035d", + "sortText": "00000321", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/orders@2020-05-01-preview'" + "newText": "'Microsoft.CustomerInsights/hubs/roleAssignments@2017-04-26'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/roles@2019-03-01'", + "label": "'Microsoft.CustomerInsights/hubs/views@2017-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/roles` \nAPI Version: `2019-03-01`" + "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/views` \nAPI Version: `2017-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000364", + "sortText": "00000324", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/roles@2019-03-01'" + "newText": "'Microsoft.CustomerInsights/hubs/views@2017-01-01'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/roles@2019-07-01'", + "label": "'Microsoft.CustomerInsights/hubs/views@2017-04-26'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/roles` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs/views` \nAPI Version: `2017-04-26`" }, "deprecated": false, "preselect": false, - "sortText": "00000363", + "sortText": "00000323", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/roles@2019-07-01'" + "newText": "'Microsoft.CustomerInsights/hubs/views@2017-04-26'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/roles@2019-08-01'", + "label": "'Microsoft.CustomerInsights/hubs@2017-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/roles` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs` \nAPI Version: `2017-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000362", + "sortText": "0000030d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/roles@2019-08-01'" + "newText": "'Microsoft.CustomerInsights/hubs@2017-01-01'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/roles@2020-05-01-preview'", + "label": "'Microsoft.CustomerInsights/hubs@2017-04-26'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/roles` \nAPI Version: `2020-05-01-preview`" + "value": "Namespace: `Microsoft.CustomerInsights` \nType: `hubs` \nAPI Version: `2017-04-26`" }, "deprecated": false, "preselect": false, - "sortText": "00000361", + "sortText": "0000030c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/roles@2020-05-01-preview'" + "newText": "'Microsoft.CustomerInsights/hubs@2017-04-26'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/shares@2019-03-01'", + "label": "'Microsoft.DBForMariaDB/servers/configurations@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/shares` \nAPI Version: `2019-03-01`" + "value": "Namespace: `Microsoft.DBForMariaDB` \nType: `servers/configurations` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000368", + "sortText": "00000398", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/shares@2019-03-01'" + "newText": "'Microsoft.DBForMariaDB/servers/configurations@2018-06-01'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/shares@2019-07-01'", + "label": "'Microsoft.DBForMariaDB/servers/configurations@2018-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/shares` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.DBForMariaDB` \nType: `servers/configurations` \nAPI Version: `2018-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000367", + "sortText": "00000397", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/shares@2019-07-01'" + "newText": "'Microsoft.DBForMariaDB/servers/configurations@2018-06-01-preview'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/shares@2019-08-01'", + "label": "'Microsoft.DBForMariaDB/servers/databases@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/shares` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DBForMariaDB` \nType: `servers/databases` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000366", + "sortText": "0000039a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/shares@2019-08-01'" + "newText": "'Microsoft.DBForMariaDB/servers/databases@2018-06-01'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/shares@2020-05-01-preview'", + "label": "'Microsoft.DBForMariaDB/servers/databases@2018-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/shares` \nAPI Version: `2020-05-01-preview`" + "value": "Namespace: `Microsoft.DBForMariaDB` \nType: `servers/databases` \nAPI Version: `2018-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000365", + "sortText": "00000399", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/shares@2020-05-01-preview'" + "newText": "'Microsoft.DBForMariaDB/servers/databases@2018-06-01-preview'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccountCredentials@2019-03-01'", + "label": "'Microsoft.DBForMariaDB/servers/firewallRules@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/storageAccountCredentials` \nAPI Version: `2019-03-01`" + "value": "Namespace: `Microsoft.DBForMariaDB` \nType: `servers/firewallRules` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000036c", + "sortText": "0000039c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccountCredentials@2019-03-01'" + "newText": "'Microsoft.DBForMariaDB/servers/firewallRules@2018-06-01'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccountCredentials@2019-07-01'", + "label": "'Microsoft.DBForMariaDB/servers/firewallRules@2018-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/storageAccountCredentials` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.DBForMariaDB` \nType: `servers/firewallRules` \nAPI Version: `2018-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000036b", + "sortText": "0000039b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccountCredentials@2019-07-01'" + "newText": "'Microsoft.DBForMariaDB/servers/firewallRules@2018-06-01-preview'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccountCredentials@2019-08-01'", + "label": "'Microsoft.DBForMariaDB/servers/securityAlertPolicies@2018-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/storageAccountCredentials` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DBForMariaDB` \nType: `servers/securityAlertPolicies` \nAPI Version: `2018-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000036a", + "sortText": "0000039e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccountCredentials@2019-08-01'" + "newText": "'Microsoft.DBForMariaDB/servers/securityAlertPolicies@2018-06-01-preview'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccountCredentials@2020-05-01-preview'", + "label": "'Microsoft.DBForMariaDB/servers/virtualNetworkRules@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/storageAccountCredentials` \nAPI Version: `2020-05-01-preview`" + "value": "Namespace: `Microsoft.DBForMariaDB` \nType: `servers/virtualNetworkRules` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000369", + "sortText": "000003a1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccountCredentials@2020-05-01-preview'" + "newText": "'Microsoft.DBForMariaDB/servers/virtualNetworkRules@2018-06-01'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccounts/containers@2019-08-01'", + "label": "'Microsoft.DBForMariaDB/servers/virtualNetworkRules@2018-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/storageAccounts/containers` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DBForMariaDB` \nType: `servers/virtualNetworkRules` \nAPI Version: `2018-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000370", + "sortText": "000003a0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccounts/containers@2019-08-01'" + "newText": "'Microsoft.DBForMariaDB/servers/virtualNetworkRules@2018-06-01-preview'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccounts/containers@2020-05-01-preview'", + "label": "'Microsoft.DBForMariaDB/servers@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/storageAccounts/containers` \nAPI Version: `2020-05-01-preview`" + "value": "Namespace: `Microsoft.DBForMariaDB` \nType: `servers` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000036f", + "sortText": "00000396", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccounts/containers@2020-05-01-preview'" + "newText": "'Microsoft.DBForMariaDB/servers@2018-06-01'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccounts@2019-08-01'", + "label": "'Microsoft.DBForMariaDB/servers@2018-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/storageAccounts` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DBForMariaDB` \nType: `servers` \nAPI Version: `2018-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000036e", + "sortText": "00000395", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccounts@2019-08-01'" + "newText": "'Microsoft.DBForMariaDB/servers@2018-06-01-preview'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccounts@2020-05-01-preview'", + "label": "'Microsoft.DBForMySQL/servers/administrators@2017-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/storageAccounts` \nAPI Version: `2020-05-01-preview`" + "value": "Namespace: `Microsoft.DBForMySQL` \nType: `servers/administrators` \nAPI Version: `2017-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000036d", + "sortText": "000003a5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccounts@2020-05-01-preview'" + "newText": "'Microsoft.DBForMySQL/servers/administrators@2017-12-01'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/triggers@2019-03-01'", + "label": "'Microsoft.DBForMySQL/servers/administrators@2017-12-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/triggers` \nAPI Version: `2019-03-01`" + "value": "Namespace: `Microsoft.DBForMySQL` \nType: `servers/administrators` \nAPI Version: `2017-12-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000374", + "sortText": "000003a4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/triggers@2019-03-01'" + "newText": "'Microsoft.DBForMySQL/servers/administrators@2017-12-01-preview'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/triggers@2019-07-01'", + "label": "'Microsoft.DBForMySQL/servers/configurations@2017-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/triggers` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.DBForMySQL` \nType: `servers/configurations` \nAPI Version: `2017-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000373", + "sortText": "000003a7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/triggers@2019-07-01'" + "newText": "'Microsoft.DBForMySQL/servers/configurations@2017-12-01'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/triggers@2019-08-01'", + "label": "'Microsoft.DBForMySQL/servers/configurations@2017-12-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/triggers` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DBForMySQL` \nType: `servers/configurations` \nAPI Version: `2017-12-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000372", + "sortText": "000003a6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/triggers@2019-08-01'" + "newText": "'Microsoft.DBForMySQL/servers/configurations@2017-12-01-preview'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/triggers@2020-05-01-preview'", + "label": "'Microsoft.DBForMySQL/servers/databases@2017-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/triggers` \nAPI Version: `2020-05-01-preview`" + "value": "Namespace: `Microsoft.DBForMySQL` \nType: `servers/databases` \nAPI Version: `2017-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000371", + "sortText": "000003a9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/triggers@2020-05-01-preview'" + "newText": "'Microsoft.DBForMySQL/servers/databases@2017-12-01'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/users@2019-03-01'", + "label": "'Microsoft.DBForMySQL/servers/databases@2017-12-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/users` \nAPI Version: `2019-03-01`" + "value": "Namespace: `Microsoft.DBForMySQL` \nType: `servers/databases` \nAPI Version: `2017-12-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000378", + "sortText": "000003a8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/users@2019-03-01'" + "newText": "'Microsoft.DBForMySQL/servers/databases@2017-12-01-preview'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/users@2019-07-01'", + "label": "'Microsoft.DBForMySQL/servers/firewallRules@2017-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/users` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.DBForMySQL` \nType: `servers/firewallRules` \nAPI Version: `2017-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000377", + "sortText": "000003ab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/users@2019-07-01'" + "newText": "'Microsoft.DBForMySQL/servers/firewallRules@2017-12-01'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/users@2019-08-01'", + "label": "'Microsoft.DBForMySQL/servers/firewallRules@2017-12-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/users` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DBForMySQL` \nType: `servers/firewallRules` \nAPI Version: `2017-12-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000376", + "sortText": "000003aa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/users@2019-08-01'" + "newText": "'Microsoft.DBForMySQL/servers/firewallRules@2017-12-01-preview'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/users@2020-05-01-preview'", + "label": "'Microsoft.DBForMySQL/servers/securityAlertPolicies@2017-12-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/users` \nAPI Version: `2020-05-01-preview`" + "value": "Namespace: `Microsoft.DBForMySQL` \nType: `servers/securityAlertPolicies` \nAPI Version: `2017-12-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000375", + "sortText": "000003ae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/users@2020-05-01-preview'" + "newText": "'Microsoft.DBForMySQL/servers/securityAlertPolicies@2017-12-01-preview'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices@2019-03-01'", + "label": "'Microsoft.DBForMySQL/servers/virtualNetworkRules@2017-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices` \nAPI Version: `2019-03-01`" + "value": "Namespace: `Microsoft.DBForMySQL` \nType: `servers/virtualNetworkRules` \nAPI Version: `2017-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000358", + "sortText": "000003b1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices@2019-03-01'" + "newText": "'Microsoft.DBForMySQL/servers/virtualNetworkRules@2017-12-01'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices@2019-07-01'", + "label": "'Microsoft.DBForMySQL/servers/virtualNetworkRules@2017-12-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.DBForMySQL` \nType: `servers/virtualNetworkRules` \nAPI Version: `2017-12-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000357", + "sortText": "000003b0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices@2019-07-01'" + "newText": "'Microsoft.DBForMySQL/servers/virtualNetworkRules@2017-12-01-preview'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices@2019-08-01'", + "label": "'Microsoft.DBForMySQL/servers@2017-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DBForMySQL` \nType: `servers` \nAPI Version: `2017-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000356", + "sortText": "000003a3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices@2019-08-01'" + "newText": "'Microsoft.DBForMySQL/servers@2017-12-01'" } }, { - "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices@2020-05-01-preview'", + "label": "'Microsoft.DBForMySQL/servers@2017-12-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices` \nAPI Version: `2020-05-01-preview`" + "value": "Namespace: `Microsoft.DBForMySQL` \nType: `servers` \nAPI Version: `2017-12-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000355", + "sortText": "000003a2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices@2020-05-01-preview'" + "newText": "'Microsoft.DBForMySQL/servers@2017-12-01-preview'" } }, { - "label": "'Microsoft.DataCatalog/catalogs@2016-03-30'", + "label": "'Microsoft.DBForPostgreSQL/servers/administrators@2017-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataCatalog` \nType: `catalogs` \nAPI Version: `2016-03-30`" + "value": "Namespace: `Microsoft.DBForPostgreSQL` \nType: `servers/administrators` \nAPI Version: `2017-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000037b", + "sortText": "000003b8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataCatalog/catalogs@2016-03-30'" + "newText": "'Microsoft.DBForPostgreSQL/servers/administrators@2017-12-01'" } }, { - "label": "'Microsoft.DataFactory/factories/dataflows@2018-06-01'", + "label": "'Microsoft.DBForPostgreSQL/servers/administrators@2017-12-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataFactory` \nType: `factories/dataflows` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.DBForPostgreSQL` \nType: `servers/administrators` \nAPI Version: `2017-12-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000382", + "sortText": "000003b7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataFactory/factories/dataflows@2018-06-01'" + "newText": "'Microsoft.DBForPostgreSQL/servers/administrators@2017-12-01-preview'" } }, { - "label": "'Microsoft.DataFactory/factories/datasets@2017-09-01-preview'", + "label": "'Microsoft.DBForPostgreSQL/servers/configurations@2017-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataFactory` \nType: `factories/datasets` \nAPI Version: `2017-09-01-preview`" + "value": "Namespace: `Microsoft.DBForPostgreSQL` \nType: `servers/configurations` \nAPI Version: `2017-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000384", + "sortText": "000003ba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataFactory/factories/datasets@2017-09-01-preview'" + "newText": "'Microsoft.DBForPostgreSQL/servers/configurations@2017-12-01'" } }, { - "label": "'Microsoft.DataFactory/factories/datasets@2018-06-01'", + "label": "'Microsoft.DBForPostgreSQL/servers/configurations@2017-12-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataFactory` \nType: `factories/datasets` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.DBForPostgreSQL` \nType: `servers/configurations` \nAPI Version: `2017-12-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000383", + "sortText": "000003b9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataFactory/factories/datasets@2018-06-01'" + "newText": "'Microsoft.DBForPostgreSQL/servers/configurations@2017-12-01-preview'" } }, { - "label": "'Microsoft.DataFactory/factories/integrationRuntimes@2017-09-01-preview'", + "label": "'Microsoft.DBForPostgreSQL/servers/databases@2017-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataFactory` \nType: `factories/integrationRuntimes` \nAPI Version: `2017-09-01-preview`" + "value": "Namespace: `Microsoft.DBForPostgreSQL` \nType: `servers/databases` \nAPI Version: `2017-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000386", + "sortText": "000003bc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataFactory/factories/integrationRuntimes@2017-09-01-preview'" + "newText": "'Microsoft.DBForPostgreSQL/servers/databases@2017-12-01'" } }, { - "label": "'Microsoft.DataFactory/factories/integrationRuntimes@2018-06-01'", + "label": "'Microsoft.DBForPostgreSQL/servers/databases@2017-12-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataFactory` \nType: `factories/integrationRuntimes` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.DBForPostgreSQL` \nType: `servers/databases` \nAPI Version: `2017-12-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000385", + "sortText": "000003bb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataFactory/factories/integrationRuntimes@2018-06-01'" + "newText": "'Microsoft.DBForPostgreSQL/servers/databases@2017-12-01-preview'" } }, { - "label": "'Microsoft.DataFactory/factories/linkedservices@2017-09-01-preview'", + "label": "'Microsoft.DBForPostgreSQL/servers/firewallRules@2017-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataFactory` \nType: `factories/linkedservices` \nAPI Version: `2017-09-01-preview`" + "value": "Namespace: `Microsoft.DBForPostgreSQL` \nType: `servers/firewallRules` \nAPI Version: `2017-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000388", + "sortText": "000003be", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataFactory/factories/linkedservices@2017-09-01-preview'" + "newText": "'Microsoft.DBForPostgreSQL/servers/firewallRules@2017-12-01'" } }, { - "label": "'Microsoft.DataFactory/factories/linkedservices@2018-06-01'", + "label": "'Microsoft.DBForPostgreSQL/servers/firewallRules@2017-12-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataFactory` \nType: `factories/linkedservices` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.DBForPostgreSQL` \nType: `servers/firewallRules` \nAPI Version: `2017-12-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000387", + "sortText": "000003bd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataFactory/factories/linkedservices@2018-06-01'" + "newText": "'Microsoft.DBForPostgreSQL/servers/firewallRules@2017-12-01-preview'" } }, { - "label": "'Microsoft.DataFactory/factories/managedVirtualNetworks/managedPrivateEndpoints@2018-06-01'", + "label": "'Microsoft.DBForPostgreSQL/servers/securityAlertPolicies@2017-12-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataFactory` \nType: `factories/managedVirtualNetworks/managedPrivateEndpoints` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.DBForPostgreSQL` \nType: `servers/securityAlertPolicies` \nAPI Version: `2017-12-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000038a", + "sortText": "000003c1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataFactory/factories/managedVirtualNetworks/managedPrivateEndpoints@2018-06-01'" + "newText": "'Microsoft.DBForPostgreSQL/servers/securityAlertPolicies@2017-12-01-preview'" } }, { - "label": "'Microsoft.DataFactory/factories/managedVirtualNetworks@2018-06-01'", + "label": "'Microsoft.DBForPostgreSQL/servers/virtualNetworkRules@2017-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataFactory` \nType: `factories/managedVirtualNetworks` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.DBForPostgreSQL` \nType: `servers/virtualNetworkRules` \nAPI Version: `2017-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000389", + "sortText": "000003c4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataFactory/factories/managedVirtualNetworks@2018-06-01'" + "newText": "'Microsoft.DBForPostgreSQL/servers/virtualNetworkRules@2017-12-01'" } }, { - "label": "'Microsoft.DataFactory/factories/pipelines@2017-09-01-preview'", + "label": "'Microsoft.DBForPostgreSQL/servers/virtualNetworkRules@2017-12-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataFactory` \nType: `factories/pipelines` \nAPI Version: `2017-09-01-preview`" + "value": "Namespace: `Microsoft.DBForPostgreSQL` \nType: `servers/virtualNetworkRules` \nAPI Version: `2017-12-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000038c", + "sortText": "000003c3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataFactory/factories/pipelines@2017-09-01-preview'" + "newText": "'Microsoft.DBForPostgreSQL/servers/virtualNetworkRules@2017-12-01-preview'" } }, { - "label": "'Microsoft.DataFactory/factories/pipelines@2018-06-01'", + "label": "'Microsoft.DBForPostgreSQL/servers@2017-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataFactory` \nType: `factories/pipelines` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.DBForPostgreSQL` \nType: `servers` \nAPI Version: `2017-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000038b", + "sortText": "000003b6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataFactory/factories/pipelines@2018-06-01'" + "newText": "'Microsoft.DBForPostgreSQL/servers@2017-12-01'" } }, { - "label": "'Microsoft.DataFactory/factories/triggers@2017-09-01-preview'", + "label": "'Microsoft.DBForPostgreSQL/servers@2017-12-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataFactory` \nType: `factories/triggers` \nAPI Version: `2017-09-01-preview`" + "value": "Namespace: `Microsoft.DBForPostgreSQL` \nType: `servers` \nAPI Version: `2017-12-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000038e", + "sortText": "000003b5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataFactory/factories/triggers@2017-09-01-preview'" + "newText": "'Microsoft.DBForPostgreSQL/servers@2017-12-01-preview'" } }, { - "label": "'Microsoft.DataFactory/factories/triggers@2018-06-01'", + "label": "'Microsoft.DBForPostgreSql/serverGroupsv2/firewallRules@2020-10-05-privatepreview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataFactory` \nType: `factories/triggers` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.DBForPostgreSql` \nType: `serverGroupsv2/firewallRules` \nAPI Version: `2020-10-05-privatepreview`" }, "deprecated": false, "preselect": false, - "sortText": "0000038d", + "sortText": "000003b3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataFactory/factories/triggers@2018-06-01'" + "newText": "'Microsoft.DBForPostgreSql/serverGroupsv2/firewallRules@2020-10-05-privatepreview'" } }, { - "label": "'Microsoft.DataFactory/factories@2017-09-01-preview'", + "label": "'Microsoft.DBForPostgreSql/serverGroupsv2/roles@2020-10-05-privatepreview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataFactory` \nType: `factories` \nAPI Version: `2017-09-01-preview`" + "value": "Namespace: `Microsoft.DBForPostgreSql` \nType: `serverGroupsv2/roles` \nAPI Version: `2020-10-05-privatepreview`" }, "deprecated": false, "preselect": false, - "sortText": "00000381", + "sortText": "000003b4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataFactory/factories@2017-09-01-preview'" + "newText": "'Microsoft.DBForPostgreSql/serverGroupsv2/roles@2020-10-05-privatepreview'" } }, { - "label": "'Microsoft.DataFactory/factories@2018-06-01'", + "label": "'Microsoft.DBForPostgreSql/serverGroupsv2@2020-10-05-privatepreview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataFactory` \nType: `factories` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.DBForPostgreSql` \nType: `serverGroupsv2` \nAPI Version: `2020-10-05-privatepreview`" }, "deprecated": false, "preselect": false, - "sortText": "00000380", + "sortText": "000003b2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataFactory/factories@2018-06-01'" + "newText": "'Microsoft.DBForPostgreSql/serverGroupsv2@2020-10-05-privatepreview'" } }, { - "label": "'Microsoft.DataLakeAnalytics/accounts/DataLakeStoreAccounts@2015-10-01-preview'", + "label": "'Microsoft.DBforMariaDB/servers/privateEndpointConnections@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataLakeAnalytics` \nType: `accounts/DataLakeStoreAccounts` \nAPI Version: `2015-10-01-preview`" + "value": "Namespace: `Microsoft.DBforMariaDB` \nType: `servers/privateEndpointConnections` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000393", + "sortText": "0000039d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataLakeAnalytics/accounts/DataLakeStoreAccounts@2015-10-01-preview'" + "newText": "'Microsoft.DBforMariaDB/servers/privateEndpointConnections@2018-06-01'" } }, { - "label": "'Microsoft.DataLakeAnalytics/accounts/StorageAccounts@2015-10-01-preview'", + "label": "'Microsoft.DBforMariaDB/servers/securityAlertPolicies@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataLakeAnalytics` \nType: `accounts/StorageAccounts` \nAPI Version: `2015-10-01-preview`" + "value": "Namespace: `Microsoft.DBforMariaDB` \nType: `servers/securityAlertPolicies` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000396", + "sortText": "0000039f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataLakeAnalytics/accounts/StorageAccounts@2015-10-01-preview'" + "newText": "'Microsoft.DBforMariaDB/servers/securityAlertPolicies@2018-06-01'" } }, { - "label": "'Microsoft.DataLakeAnalytics/accounts/computePolicies@2016-11-01'", + "label": "'Microsoft.DBforMySQL/servers/keys@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataLakeAnalytics` \nType: `accounts/computePolicies` \nAPI Version: `2016-11-01`" + "value": "Namespace: `Microsoft.DBforMySQL` \nType: `servers/keys` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000391", + "sortText": "000003ac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataLakeAnalytics/accounts/computePolicies@2016-11-01'" + "newText": "'Microsoft.DBforMySQL/servers/keys@2020-01-01'" } }, { - "label": "'Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts@2016-11-01'", + "label": "'Microsoft.DBforMySQL/servers/privateEndpointConnections@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataLakeAnalytics` \nType: `accounts/dataLakeStoreAccounts` \nAPI Version: `2016-11-01`" + "value": "Namespace: `Microsoft.DBforMySQL` \nType: `servers/privateEndpointConnections` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000392", + "sortText": "000003ad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts@2016-11-01'" + "newText": "'Microsoft.DBforMySQL/servers/privateEndpointConnections@2018-06-01'" } }, { - "label": "'Microsoft.DataLakeAnalytics/accounts/firewallRules@2016-11-01'", + "label": "'Microsoft.DBforMySQL/servers/securityAlertPolicies@2017-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataLakeAnalytics` \nType: `accounts/firewallRules` \nAPI Version: `2016-11-01`" + "value": "Namespace: `Microsoft.DBforMySQL` \nType: `servers/securityAlertPolicies` \nAPI Version: `2017-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000394", + "sortText": "000003af", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataLakeAnalytics/accounts/firewallRules@2016-11-01'" + "newText": "'Microsoft.DBforMySQL/servers/securityAlertPolicies@2017-12-01'" } }, { - "label": "'Microsoft.DataLakeAnalytics/accounts/storageAccounts@2016-11-01'", + "label": "'Microsoft.DBforPostgreSQL/servers/keys@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataLakeAnalytics` \nType: `accounts/storageAccounts` \nAPI Version: `2016-11-01`" + "value": "Namespace: `Microsoft.DBforPostgreSQL` \nType: `servers/keys` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000395", + "sortText": "000003bf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataLakeAnalytics/accounts/storageAccounts@2016-11-01'" + "newText": "'Microsoft.DBforPostgreSQL/servers/keys@2020-01-01'" } }, { - "label": "'Microsoft.DataLakeAnalytics/accounts@2015-10-01-preview'", + "label": "'Microsoft.DBforPostgreSQL/servers/privateEndpointConnections@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataLakeAnalytics` \nType: `accounts` \nAPI Version: `2015-10-01-preview`" + "value": "Namespace: `Microsoft.DBforPostgreSQL` \nType: `servers/privateEndpointConnections` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000390", + "sortText": "000003c0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataLakeAnalytics/accounts@2015-10-01-preview'" + "newText": "'Microsoft.DBforPostgreSQL/servers/privateEndpointConnections@2018-06-01'" } }, { - "label": "'Microsoft.DataLakeAnalytics/accounts@2016-11-01'", + "label": "'Microsoft.DBforPostgreSQL/servers/securityAlertPolicies@2017-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataLakeAnalytics` \nType: `accounts` \nAPI Version: `2016-11-01`" + "value": "Namespace: `Microsoft.DBforPostgreSQL` \nType: `servers/securityAlertPolicies` \nAPI Version: `2017-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000038f", + "sortText": "000003c2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataLakeAnalytics/accounts@2016-11-01'" + "newText": "'Microsoft.DBforPostgreSQL/servers/securityAlertPolicies@2017-12-01'" } }, { - "label": "'Microsoft.DataLakeStore/accounts/firewallRules@2015-10-01-preview'", + "label": "'Microsoft.DataBox/jobs@2018-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataLakeStore` \nType: `accounts/firewallRules` \nAPI Version: `2015-10-01-preview`" + "value": "Namespace: `Microsoft.DataBox` \nType: `jobs` \nAPI Version: `2018-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000039a", + "sortText": "0000032a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataLakeStore/accounts/firewallRules@2015-10-01-preview'" + "newText": "'Microsoft.DataBox/jobs@2018-01-01'" } }, { - "label": "'Microsoft.DataLakeStore/accounts/firewallRules@2016-11-01'", + "label": "'Microsoft.DataBox/jobs@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataLakeStore` \nType: `accounts/firewallRules` \nAPI Version: `2016-11-01`" + "value": "Namespace: `Microsoft.DataBox` \nType: `jobs` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000399", + "sortText": "00000329", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataLakeStore/accounts/firewallRules@2016-11-01'" + "newText": "'Microsoft.DataBox/jobs@2019-09-01'" } }, { - "label": "'Microsoft.DataLakeStore/accounts/trustedIdProviders@2016-11-01'", + "label": "'Microsoft.DataBox/jobs@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataLakeStore` \nType: `accounts/trustedIdProviders` \nAPI Version: `2016-11-01`" + "value": "Namespace: `Microsoft.DataBox` \nType: `jobs` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000039b", + "sortText": "00000328", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataLakeStore/accounts/trustedIdProviders@2016-11-01'" + "newText": "'Microsoft.DataBox/jobs@2020-04-01'" } }, { - "label": "'Microsoft.DataLakeStore/accounts/virtualNetworkRules@2016-11-01'", + "label": "'Microsoft.DataBox/jobs@2020-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataLakeStore` \nType: `accounts/virtualNetworkRules` \nAPI Version: `2016-11-01`" + "value": "Namespace: `Microsoft.DataBox` \nType: `jobs` \nAPI Version: `2020-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000039c", + "sortText": "00000327", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataLakeStore/accounts/virtualNetworkRules@2016-11-01'" + "newText": "'Microsoft.DataBox/jobs@2020-11-01'" } }, { - "label": "'Microsoft.DataLakeStore/accounts@2015-10-01-preview'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/bandwidthSchedules@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataLakeStore` \nType: `accounts` \nAPI Version: `2015-10-01-preview`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/bandwidthSchedules` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000398", + "sortText": "00000332", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataLakeStore/accounts@2015-10-01-preview'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/bandwidthSchedules@2019-03-01'" } }, { - "label": "'Microsoft.DataLakeStore/accounts@2016-11-01'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/bandwidthSchedules@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataLakeStore` \nType: `accounts` \nAPI Version: `2016-11-01`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/bandwidthSchedules` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000397", + "sortText": "00000331", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataLakeStore/accounts@2016-11-01'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/bandwidthSchedules@2019-07-01'" } }, { - "label": "'Microsoft.DataMigration/services/projects/files@2018-07-15-preview'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/bandwidthSchedules@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataMigration` \nType: `services/projects/files` \nAPI Version: `2018-07-15-preview`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/bandwidthSchedules` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003a7", + "sortText": "00000330", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataMigration/services/projects/files@2018-07-15-preview'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/bandwidthSchedules@2019-08-01'" } }, { - "label": "'Microsoft.DataMigration/services/projects/tasks@2017-11-15-preview'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/bandwidthSchedules@2020-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataMigration` \nType: `services/projects/tasks` \nAPI Version: `2017-11-15-preview`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/bandwidthSchedules` \nAPI Version: `2020-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000003ac", + "sortText": "0000032f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataMigration/services/projects/tasks@2017-11-15-preview'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/bandwidthSchedules@2020-05-01-preview'" } }, { - "label": "'Microsoft.DataMigration/services/projects/tasks@2018-03-15-preview'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/orders@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataMigration` \nType: `services/projects/tasks` \nAPI Version: `2018-03-15-preview`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/orders` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003ab", + "sortText": "00000336", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataMigration/services/projects/tasks@2018-03-15-preview'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/orders@2019-03-01'" } }, { - "label": "'Microsoft.DataMigration/services/projects/tasks@2018-03-31-preview'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/orders@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataMigration` \nType: `services/projects/tasks` \nAPI Version: `2018-03-31-preview`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/orders` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003aa", + "sortText": "00000335", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataMigration/services/projects/tasks@2018-03-31-preview'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/orders@2019-07-01'" } }, { - "label": "'Microsoft.DataMigration/services/projects/tasks@2018-04-19'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/orders@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataMigration` \nType: `services/projects/tasks` \nAPI Version: `2018-04-19`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/orders` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003a9", + "sortText": "00000334", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataMigration/services/projects/tasks@2018-04-19'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/orders@2019-08-01'" } }, { - "label": "'Microsoft.DataMigration/services/projects/tasks@2018-07-15-preview'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/orders@2020-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataMigration` \nType: `services/projects/tasks` \nAPI Version: `2018-07-15-preview`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/orders` \nAPI Version: `2020-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000003a8", + "sortText": "00000333", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataMigration/services/projects/tasks@2018-07-15-preview'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/orders@2020-05-01-preview'" } }, { - "label": "'Microsoft.DataMigration/services/projects@2017-11-15-preview'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/roles@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataMigration` \nType: `services/projects` \nAPI Version: `2017-11-15-preview`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/roles` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003a6", + "sortText": "0000033a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataMigration/services/projects@2017-11-15-preview'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/roles@2019-03-01'" } }, { - "label": "'Microsoft.DataMigration/services/projects@2018-03-15-preview'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/roles@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataMigration` \nType: `services/projects` \nAPI Version: `2018-03-15-preview`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/roles` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003a5", + "sortText": "00000339", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataMigration/services/projects@2018-03-15-preview'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/roles@2019-07-01'" } }, { - "label": "'Microsoft.DataMigration/services/projects@2018-03-31-preview'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/roles@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataMigration` \nType: `services/projects` \nAPI Version: `2018-03-31-preview`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/roles` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003a4", + "sortText": "00000338", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataMigration/services/projects@2018-03-31-preview'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/roles@2019-08-01'" } }, { - "label": "'Microsoft.DataMigration/services/projects@2018-04-19'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/roles@2020-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataMigration` \nType: `services/projects` \nAPI Version: `2018-04-19`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/roles` \nAPI Version: `2020-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000003a3", + "sortText": "00000337", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataMigration/services/projects@2018-04-19'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/roles@2020-05-01-preview'" } }, { - "label": "'Microsoft.DataMigration/services/projects@2018-07-15-preview'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/shares@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataMigration` \nType: `services/projects` \nAPI Version: `2018-07-15-preview`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/shares` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003a2", + "sortText": "0000033e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataMigration/services/projects@2018-07-15-preview'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/shares@2019-03-01'" } }, { - "label": "'Microsoft.DataMigration/services/serviceTasks@2018-07-15-preview'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/shares@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataMigration` \nType: `services/serviceTasks` \nAPI Version: `2018-07-15-preview`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/shares` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003ad", + "sortText": "0000033d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataMigration/services/serviceTasks@2018-07-15-preview'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/shares@2019-07-01'" } }, { - "label": "'Microsoft.DataMigration/services@2017-11-15-preview'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/shares@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataMigration` \nType: `services` \nAPI Version: `2017-11-15-preview`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/shares` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003a1", + "sortText": "0000033c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataMigration/services@2017-11-15-preview'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/shares@2019-08-01'" } }, { - "label": "'Microsoft.DataMigration/services@2018-03-15-preview'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/shares@2020-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataMigration` \nType: `services` \nAPI Version: `2018-03-15-preview`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/shares` \nAPI Version: `2020-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000003a0", + "sortText": "0000033b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataMigration/services@2018-03-15-preview'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/shares@2020-05-01-preview'" } }, { - "label": "'Microsoft.DataMigration/services@2018-03-31-preview'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccountCredentials@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataMigration` \nType: `services` \nAPI Version: `2018-03-31-preview`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/storageAccountCredentials` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000039f", + "sortText": "00000342", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataMigration/services@2018-03-31-preview'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccountCredentials@2019-03-01'" } }, { - "label": "'Microsoft.DataMigration/services@2018-04-19'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccountCredentials@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataMigration` \nType: `services` \nAPI Version: `2018-04-19`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/storageAccountCredentials` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000039e", + "sortText": "00000341", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataMigration/services@2018-04-19'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccountCredentials@2019-07-01'" } }, { - "label": "'Microsoft.DataMigration/services@2018-07-15-preview'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccountCredentials@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataMigration` \nType: `services` \nAPI Version: `2018-07-15-preview`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/storageAccountCredentials` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000039d", + "sortText": "00000340", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataMigration/services@2018-07-15-preview'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccountCredentials@2019-08-01'" } }, { - "label": "'Microsoft.DataShare/accounts/shareSubscriptions/dataSetMappings@2018-11-01-preview'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccountCredentials@2020-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shareSubscriptions/dataSetMappings` \nAPI Version: `2018-11-01-preview`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/storageAccountCredentials` \nAPI Version: `2020-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000003bb", + "sortText": "0000033f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataShare/accounts/shareSubscriptions/dataSetMappings@2018-11-01-preview'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccountCredentials@2020-05-01-preview'" } }, { - "label": "'Microsoft.DataShare/accounts/shareSubscriptions/dataSetMappings@2019-11-01'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccounts/containers@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shareSubscriptions/dataSetMappings` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/storageAccounts/containers` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003ba", + "sortText": "00000346", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataShare/accounts/shareSubscriptions/dataSetMappings@2019-11-01'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccounts/containers@2019-08-01'" } }, { - "label": "'Microsoft.DataShare/accounts/shareSubscriptions/triggers@2018-11-01-preview'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccounts/containers@2020-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shareSubscriptions/triggers` \nAPI Version: `2018-11-01-preview`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/storageAccounts/containers` \nAPI Version: `2020-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000003bd", + "sortText": "00000345", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataShare/accounts/shareSubscriptions/triggers@2018-11-01-preview'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccounts/containers@2020-05-01-preview'" } }, { - "label": "'Microsoft.DataShare/accounts/shareSubscriptions/triggers@2019-11-01'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccounts@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shareSubscriptions/triggers` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/storageAccounts` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003bc", + "sortText": "00000344", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataShare/accounts/shareSubscriptions/triggers@2019-11-01'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccounts@2019-08-01'" } }, { - "label": "'Microsoft.DataShare/accounts/shareSubscriptions@2018-11-01-preview'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccounts@2020-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shareSubscriptions` \nAPI Version: `2018-11-01-preview`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/storageAccounts` \nAPI Version: `2020-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000003b9", + "sortText": "00000343", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataShare/accounts/shareSubscriptions@2018-11-01-preview'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/storageAccounts@2020-05-01-preview'" } }, { - "label": "'Microsoft.DataShare/accounts/shareSubscriptions@2019-11-01'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/triggers@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shareSubscriptions` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/triggers` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003b8", + "sortText": "0000034a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataShare/accounts/shareSubscriptions@2019-11-01'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/triggers@2019-03-01'" } }, { - "label": "'Microsoft.DataShare/accounts/shares/dataSets@2018-11-01-preview'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/triggers@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shares/dataSets` \nAPI Version: `2018-11-01-preview`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/triggers` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003b3", + "sortText": "00000349", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataShare/accounts/shares/dataSets@2018-11-01-preview'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/triggers@2019-07-01'" } }, { - "label": "'Microsoft.DataShare/accounts/shares/dataSets@2019-11-01'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/triggers@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shares/dataSets` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/triggers` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003b2", + "sortText": "00000348", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataShare/accounts/shares/dataSets@2019-11-01'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/triggers@2019-08-01'" } }, { - "label": "'Microsoft.DataShare/accounts/shares/invitations@2018-11-01-preview'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/triggers@2020-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shares/invitations` \nAPI Version: `2018-11-01-preview`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/triggers` \nAPI Version: `2020-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000003b5", + "sortText": "00000347", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataShare/accounts/shares/invitations@2018-11-01-preview'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/triggers@2020-05-01-preview'" } }, { - "label": "'Microsoft.DataShare/accounts/shares/invitations@2019-11-01'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/users@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shares/invitations` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/users` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003b4", + "sortText": "0000034e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataShare/accounts/shares/invitations@2019-11-01'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/users@2019-03-01'" } }, { - "label": "'Microsoft.DataShare/accounts/shares/synchronizationSettings@2018-11-01-preview'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/users@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shares/synchronizationSettings` \nAPI Version: `2018-11-01-preview`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/users` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003b7", + "sortText": "0000034d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataShare/accounts/shares/synchronizationSettings@2018-11-01-preview'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/users@2019-07-01'" } }, { - "label": "'Microsoft.DataShare/accounts/shares/synchronizationSettings@2019-11-01'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/users@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shares/synchronizationSettings` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/users` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003b6", + "sortText": "0000034c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataShare/accounts/shares/synchronizationSettings@2019-11-01'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/users@2019-08-01'" } }, { - "label": "'Microsoft.DataShare/accounts/shares@2018-11-01-preview'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/users@2020-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shares` \nAPI Version: `2018-11-01-preview`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices/users` \nAPI Version: `2020-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000003b1", + "sortText": "0000034b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataShare/accounts/shares@2018-11-01-preview'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices/users@2020-05-01-preview'" } }, { - "label": "'Microsoft.DataShare/accounts/shares@2019-11-01'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shares` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003b0", + "sortText": "0000032e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataShare/accounts/shares@2019-11-01'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices@2019-03-01'" } }, { - "label": "'Microsoft.DataShare/accounts@2018-11-01-preview'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataShare` \nType: `accounts` \nAPI Version: `2018-11-01-preview`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003af", + "sortText": "0000032d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataShare/accounts@2018-11-01-preview'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices@2019-07-01'" } }, { - "label": "'Microsoft.DataShare/accounts@2019-11-01'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DataShare` \nType: `accounts` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003ae", + "sortText": "0000032c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DataShare/accounts@2019-11-01'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices@2019-08-01'" } }, { - "label": "'Microsoft.Databricks/workspaces/virtualNetworkPeerings@2018-04-01'", + "label": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices@2020-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Databricks` \nType: `workspaces/virtualNetworkPeerings` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.DataBoxEdge` \nType: `dataBoxEdgeDevices` \nAPI Version: `2020-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000037a", + "sortText": "0000032b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Databricks/workspaces/virtualNetworkPeerings@2018-04-01'" + "newText": "'Microsoft.DataBoxEdge/dataBoxEdgeDevices@2020-05-01-preview'" } }, { - "label": "'Microsoft.Databricks/workspaces@2018-04-01'", + "label": "'Microsoft.DataCatalog/catalogs@2016-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Databricks` \nType: `workspaces` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.DataCatalog` \nType: `catalogs` \nAPI Version: `2016-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "00000379", + "sortText": "00000351", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Databricks/workspaces@2018-04-01'" + "newText": "'Microsoft.DataCatalog/catalogs@2016-03-30'" } }, { - "label": "'Microsoft.Datadog/agreements@2020-02-01-preview'", + "label": "'Microsoft.DataFactory/factories/dataflows@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Datadog` \nType: `agreements` \nAPI Version: `2020-02-01-preview`" + "value": "Namespace: `Microsoft.DataFactory` \nType: `factories/dataflows` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000037c", + "sortText": "00000357", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Datadog/agreements@2020-02-01-preview'" + "newText": "'Microsoft.DataFactory/factories/dataflows@2018-06-01'" } }, { - "label": "'Microsoft.Datadog/monitors/singleSignOnConfigurations@2020-02-01-preview'", + "label": "'Microsoft.DataFactory/factories/datasets@2017-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Datadog` \nType: `monitors/singleSignOnConfigurations` \nAPI Version: `2020-02-01-preview`" + "value": "Namespace: `Microsoft.DataFactory` \nType: `factories/datasets` \nAPI Version: `2017-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000037e", + "sortText": "00000359", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Datadog/monitors/singleSignOnConfigurations@2020-02-01-preview'" + "newText": "'Microsoft.DataFactory/factories/datasets@2017-09-01-preview'" } }, { - "label": "'Microsoft.Datadog/monitors/tagRules@2020-02-01-preview'", + "label": "'Microsoft.DataFactory/factories/datasets@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Datadog` \nType: `monitors/tagRules` \nAPI Version: `2020-02-01-preview`" + "value": "Namespace: `Microsoft.DataFactory` \nType: `factories/datasets` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000037f", + "sortText": "00000358", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Datadog/monitors/tagRules@2020-02-01-preview'" + "newText": "'Microsoft.DataFactory/factories/datasets@2018-06-01'" } }, { - "label": "'Microsoft.Datadog/monitors@2020-02-01-preview'", + "label": "'Microsoft.DataFactory/factories/integrationRuntimes@2017-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Datadog` \nType: `monitors` \nAPI Version: `2020-02-01-preview`" + "value": "Namespace: `Microsoft.DataFactory` \nType: `factories/integrationRuntimes` \nAPI Version: `2017-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000037d", + "sortText": "0000035b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Datadog/monitors@2020-02-01-preview'" + "newText": "'Microsoft.DataFactory/factories/integrationRuntimes@2017-09-01-preview'" } }, { - "label": "'Microsoft.Deployment.Admin/locations/fileContainers@2019-01-01'", + "label": "'Microsoft.DataFactory/factories/integrationRuntimes@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Deployment.Admin` \nType: `locations/fileContainers` \nAPI Version: `2019-01-01`" + "value": "Namespace: `Microsoft.DataFactory` \nType: `factories/integrationRuntimes` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003ee", + "sortText": "0000035a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Deployment.Admin/locations/fileContainers@2019-01-01'" + "newText": "'Microsoft.DataFactory/factories/integrationRuntimes@2018-06-01'" } }, { - "label": "'Microsoft.Deployment.Admin/locations/productPackages@2019-01-01'", + "label": "'Microsoft.DataFactory/factories/linkedservices@2017-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Deployment.Admin` \nType: `locations/productPackages` \nAPI Version: `2019-01-01`" + "value": "Namespace: `Microsoft.DataFactory` \nType: `factories/linkedservices` \nAPI Version: `2017-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000003ef", + "sortText": "0000035d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Deployment.Admin/locations/productPackages@2019-01-01'" + "newText": "'Microsoft.DataFactory/factories/linkedservices@2017-09-01-preview'" } }, { - "label": "'Microsoft.DeploymentManager/artifactSources@2018-09-01-preview'", + "label": "'Microsoft.DataFactory/factories/linkedservices@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DeploymentManager` \nType: `artifactSources` \nAPI Version: `2018-09-01-preview`" + "value": "Namespace: `Microsoft.DataFactory` \nType: `factories/linkedservices` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003f1", + "sortText": "0000035c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DeploymentManager/artifactSources@2018-09-01-preview'" + "newText": "'Microsoft.DataFactory/factories/linkedservices@2018-06-01'" } }, { - "label": "'Microsoft.DeploymentManager/artifactSources@2019-11-01-preview'", + "label": "'Microsoft.DataFactory/factories/managedVirtualNetworks/managedPrivateEndpoints@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DeploymentManager` \nType: `artifactSources` \nAPI Version: `2019-11-01-preview`" + "value": "Namespace: `Microsoft.DataFactory` \nType: `factories/managedVirtualNetworks/managedPrivateEndpoints` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003f0", + "sortText": "0000035f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DeploymentManager/artifactSources@2019-11-01-preview'" + "newText": "'Microsoft.DataFactory/factories/managedVirtualNetworks/managedPrivateEndpoints@2018-06-01'" } }, { - "label": "'Microsoft.DeploymentManager/rollouts@2018-09-01-preview'", + "label": "'Microsoft.DataFactory/factories/managedVirtualNetworks@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DeploymentManager` \nType: `rollouts` \nAPI Version: `2018-09-01-preview`" + "value": "Namespace: `Microsoft.DataFactory` \nType: `factories/managedVirtualNetworks` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003f3", + "sortText": "0000035e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DeploymentManager/rollouts@2018-09-01-preview'" + "newText": "'Microsoft.DataFactory/factories/managedVirtualNetworks@2018-06-01'" } }, { - "label": "'Microsoft.DeploymentManager/rollouts@2019-11-01-preview'", + "label": "'Microsoft.DataFactory/factories/pipelines@2017-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DeploymentManager` \nType: `rollouts` \nAPI Version: `2019-11-01-preview`" + "value": "Namespace: `Microsoft.DataFactory` \nType: `factories/pipelines` \nAPI Version: `2017-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000003f2", + "sortText": "00000361", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DeploymentManager/rollouts@2019-11-01-preview'" + "newText": "'Microsoft.DataFactory/factories/pipelines@2017-09-01-preview'" } }, { - "label": "'Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits@2018-09-01-preview'", + "label": "'Microsoft.DataFactory/factories/pipelines@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DeploymentManager` \nType: `serviceTopologies/services/serviceUnits` \nAPI Version: `2018-09-01-preview`" + "value": "Namespace: `Microsoft.DataFactory` \nType: `factories/pipelines` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003f9", + "sortText": "00000360", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits@2018-09-01-preview'" + "newText": "'Microsoft.DataFactory/factories/pipelines@2018-06-01'" } }, { - "label": "'Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits@2019-11-01-preview'", + "label": "'Microsoft.DataFactory/factories/triggers@2017-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DeploymentManager` \nType: `serviceTopologies/services/serviceUnits` \nAPI Version: `2019-11-01-preview`" + "value": "Namespace: `Microsoft.DataFactory` \nType: `factories/triggers` \nAPI Version: `2017-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000003f8", + "sortText": "00000363", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits@2019-11-01-preview'" + "newText": "'Microsoft.DataFactory/factories/triggers@2017-09-01-preview'" } }, { - "label": "'Microsoft.DeploymentManager/serviceTopologies/services@2018-09-01-preview'", + "label": "'Microsoft.DataFactory/factories/triggers@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DeploymentManager` \nType: `serviceTopologies/services` \nAPI Version: `2018-09-01-preview`" + "value": "Namespace: `Microsoft.DataFactory` \nType: `factories/triggers` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003f7", + "sortText": "00000362", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DeploymentManager/serviceTopologies/services@2018-09-01-preview'" + "newText": "'Microsoft.DataFactory/factories/triggers@2018-06-01'" } }, { - "label": "'Microsoft.DeploymentManager/serviceTopologies/services@2019-11-01-preview'", + "label": "'Microsoft.DataFactory/factories@2017-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DeploymentManager` \nType: `serviceTopologies/services` \nAPI Version: `2019-11-01-preview`" + "value": "Namespace: `Microsoft.DataFactory` \nType: `factories` \nAPI Version: `2017-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000003f6", + "sortText": "00000356", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DeploymentManager/serviceTopologies/services@2019-11-01-preview'" + "newText": "'Microsoft.DataFactory/factories@2017-09-01-preview'" } }, { - "label": "'Microsoft.DeploymentManager/serviceTopologies@2018-09-01-preview'", + "label": "'Microsoft.DataFactory/factories@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DeploymentManager` \nType: `serviceTopologies` \nAPI Version: `2018-09-01-preview`" + "value": "Namespace: `Microsoft.DataFactory` \nType: `factories` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003f5", + "sortText": "00000355", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DeploymentManager/serviceTopologies@2018-09-01-preview'" + "newText": "'Microsoft.DataFactory/factories@2018-06-01'" } }, { - "label": "'Microsoft.DeploymentManager/serviceTopologies@2019-11-01-preview'", + "label": "'Microsoft.DataLakeAnalytics/accounts/DataLakeStoreAccounts@2015-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DeploymentManager` \nType: `serviceTopologies` \nAPI Version: `2019-11-01-preview`" + "value": "Namespace: `Microsoft.DataLakeAnalytics` \nType: `accounts/DataLakeStoreAccounts` \nAPI Version: `2015-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000003f4", + "sortText": "00000369", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DeploymentManager/serviceTopologies@2019-11-01-preview'" + "newText": "'Microsoft.DataLakeAnalytics/accounts/DataLakeStoreAccounts@2015-10-01-preview'" } }, { - "label": "'Microsoft.DeploymentManager/steps@2018-09-01-preview'", + "label": "'Microsoft.DataLakeAnalytics/accounts/StorageAccounts@2015-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DeploymentManager` \nType: `steps` \nAPI Version: `2018-09-01-preview`" + "value": "Namespace: `Microsoft.DataLakeAnalytics` \nType: `accounts/StorageAccounts` \nAPI Version: `2015-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000003fb", + "sortText": "0000036d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DeploymentManager/steps@2018-09-01-preview'" + "newText": "'Microsoft.DataLakeAnalytics/accounts/StorageAccounts@2015-10-01-preview'" } }, { - "label": "'Microsoft.DeploymentManager/steps@2019-11-01-preview'", + "label": "'Microsoft.DataLakeAnalytics/accounts/computePolicies@2015-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DeploymentManager` \nType: `steps` \nAPI Version: `2019-11-01-preview`" + "value": "Namespace: `Microsoft.DataLakeAnalytics` \nType: `accounts/computePolicies` \nAPI Version: `2015-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000003fa", + "sortText": "00000367", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DeploymentManager/steps@2019-11-01-preview'" + "newText": "'Microsoft.DataLakeAnalytics/accounts/computePolicies@2015-10-01-preview'" } }, { - "label": "'Microsoft.DesktopVirtualization/applicationGroups/applications@2019-01-23-preview'", + "label": "'Microsoft.DataLakeAnalytics/accounts/computePolicies@2016-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `applicationGroups/applications` \nAPI Version: `2019-01-23-preview`" + "value": "Namespace: `Microsoft.DataLakeAnalytics` \nType: `accounts/computePolicies` \nAPI Version: `2016-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000407", + "sortText": "00000366", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DesktopVirtualization/applicationGroups/applications@2019-01-23-preview'" + "newText": "'Microsoft.DataLakeAnalytics/accounts/computePolicies@2016-11-01'" } }, { - "label": "'Microsoft.DesktopVirtualization/applicationGroups/applications@2019-09-24-preview'", + "label": "'Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts@2016-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `applicationGroups/applications` \nAPI Version: `2019-09-24-preview`" + "value": "Namespace: `Microsoft.DataLakeAnalytics` \nType: `accounts/dataLakeStoreAccounts` \nAPI Version: `2016-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000406", + "sortText": "00000368", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DesktopVirtualization/applicationGroups/applications@2019-09-24-preview'" + "newText": "'Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts@2016-11-01'" } }, { - "label": "'Microsoft.DesktopVirtualization/applicationGroups/applications@2019-12-10-preview'", + "label": "'Microsoft.DataLakeAnalytics/accounts/firewallRules@2015-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `applicationGroups/applications` \nAPI Version: `2019-12-10-preview`" + "value": "Namespace: `Microsoft.DataLakeAnalytics` \nType: `accounts/firewallRules` \nAPI Version: `2015-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000405", + "sortText": "0000036b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DesktopVirtualization/applicationGroups/applications@2019-12-10-preview'" + "newText": "'Microsoft.DataLakeAnalytics/accounts/firewallRules@2015-10-01-preview'" } }, { - "label": "'Microsoft.DesktopVirtualization/applicationGroups/applications@2020-09-21-preview'", + "label": "'Microsoft.DataLakeAnalytics/accounts/firewallRules@2016-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `applicationGroups/applications` \nAPI Version: `2020-09-21-preview`" + "value": "Namespace: `Microsoft.DataLakeAnalytics` \nType: `accounts/firewallRules` \nAPI Version: `2016-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000404", + "sortText": "0000036a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DesktopVirtualization/applicationGroups/applications@2020-09-21-preview'" + "newText": "'Microsoft.DataLakeAnalytics/accounts/firewallRules@2016-11-01'" } }, { - "label": "'Microsoft.DesktopVirtualization/applicationGroups/applications@2020-10-19-preview'", + "label": "'Microsoft.DataLakeAnalytics/accounts/storageAccounts@2016-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `applicationGroups/applications` \nAPI Version: `2020-10-19-preview`" + "value": "Namespace: `Microsoft.DataLakeAnalytics` \nType: `accounts/storageAccounts` \nAPI Version: `2016-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000403", + "sortText": "0000036c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DesktopVirtualization/applicationGroups/applications@2020-10-19-preview'" + "newText": "'Microsoft.DataLakeAnalytics/accounts/storageAccounts@2016-11-01'" } }, { - "label": "'Microsoft.DesktopVirtualization/applicationGroups/applications@2020-11-02-preview'", + "label": "'Microsoft.DataLakeAnalytics/accounts@2015-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `applicationGroups/applications` \nAPI Version: `2020-11-02-preview`" + "value": "Namespace: `Microsoft.DataLakeAnalytics` \nType: `accounts` \nAPI Version: `2015-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000402", + "sortText": "00000365", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DesktopVirtualization/applicationGroups/applications@2020-11-02-preview'" + "newText": "'Microsoft.DataLakeAnalytics/accounts@2015-10-01-preview'" } }, { - "label": "'Microsoft.DesktopVirtualization/applicationGroups@2019-01-23-preview'", + "label": "'Microsoft.DataLakeAnalytics/accounts@2016-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `applicationGroups` \nAPI Version: `2019-01-23-preview`" + "value": "Namespace: `Microsoft.DataLakeAnalytics` \nType: `accounts` \nAPI Version: `2016-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000401", + "sortText": "00000364", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DesktopVirtualization/applicationGroups@2019-01-23-preview'" + "newText": "'Microsoft.DataLakeAnalytics/accounts@2016-11-01'" } }, { - "label": "'Microsoft.DesktopVirtualization/applicationGroups@2019-09-24-preview'", + "label": "'Microsoft.DataLakeStore/accounts/firewallRules@2015-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `applicationGroups` \nAPI Version: `2019-09-24-preview`" + "value": "Namespace: `Microsoft.DataLakeStore` \nType: `accounts/firewallRules` \nAPI Version: `2015-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000400", + "sortText": "00000371", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DesktopVirtualization/applicationGroups@2019-09-24-preview'" + "newText": "'Microsoft.DataLakeStore/accounts/firewallRules@2015-10-01-preview'" } }, { - "label": "'Microsoft.DesktopVirtualization/applicationGroups@2019-12-10-preview'", + "label": "'Microsoft.DataLakeStore/accounts/firewallRules@2016-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `applicationGroups` \nAPI Version: `2019-12-10-preview`" + "value": "Namespace: `Microsoft.DataLakeStore` \nType: `accounts/firewallRules` \nAPI Version: `2016-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003ff", + "sortText": "00000370", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DesktopVirtualization/applicationGroups@2019-12-10-preview'" + "newText": "'Microsoft.DataLakeStore/accounts/firewallRules@2016-11-01'" } }, { - "label": "'Microsoft.DesktopVirtualization/applicationGroups@2020-09-21-preview'", + "label": "'Microsoft.DataLakeStore/accounts/trustedIdProviders@2016-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `applicationGroups` \nAPI Version: `2020-09-21-preview`" + "value": "Namespace: `Microsoft.DataLakeStore` \nType: `accounts/trustedIdProviders` \nAPI Version: `2016-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003fe", + "sortText": "00000372", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DesktopVirtualization/applicationGroups@2020-09-21-preview'" + "newText": "'Microsoft.DataLakeStore/accounts/trustedIdProviders@2016-11-01'" } }, { - "label": "'Microsoft.DesktopVirtualization/applicationGroups@2020-10-19-preview'", + "label": "'Microsoft.DataLakeStore/accounts/virtualNetworkRules@2016-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `applicationGroups` \nAPI Version: `2020-10-19-preview`" + "value": "Namespace: `Microsoft.DataLakeStore` \nType: `accounts/virtualNetworkRules` \nAPI Version: `2016-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000003fd", + "sortText": "00000373", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DesktopVirtualization/applicationGroups@2020-10-19-preview'" + "newText": "'Microsoft.DataLakeStore/accounts/virtualNetworkRules@2016-11-01'" } }, { - "label": "'Microsoft.DesktopVirtualization/applicationGroups@2020-11-02-preview'", + "label": "'Microsoft.DataLakeStore/accounts@2015-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `applicationGroups` \nAPI Version: `2020-11-02-preview`" + "value": "Namespace: `Microsoft.DataLakeStore` \nType: `accounts` \nAPI Version: `2015-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000003fc", + "sortText": "0000036f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DesktopVirtualization/applicationGroups@2020-11-02-preview'" + "newText": "'Microsoft.DataLakeStore/accounts@2015-10-01-preview'" } }, { - "label": "'Microsoft.DesktopVirtualization/hostPools/msixPackages@2020-09-21-preview'", + "label": "'Microsoft.DataLakeStore/accounts@2016-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `hostPools/msixPackages` \nAPI Version: `2020-09-21-preview`" + "value": "Namespace: `Microsoft.DataLakeStore` \nType: `accounts` \nAPI Version: `2016-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000410", + "sortText": "0000036e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DesktopVirtualization/hostPools/msixPackages@2020-09-21-preview'" + "newText": "'Microsoft.DataLakeStore/accounts@2016-11-01'" } }, { - "label": "'Microsoft.DesktopVirtualization/hostPools/msixPackages@2020-10-19-preview'", + "label": "'Microsoft.DataMigration/services/projects/files@2018-07-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `hostPools/msixPackages` \nAPI Version: `2020-10-19-preview`" + "value": "Namespace: `Microsoft.DataMigration` \nType: `services/projects/files` \nAPI Version: `2018-07-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000040f", + "sortText": "0000037e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DesktopVirtualization/hostPools/msixPackages@2020-10-19-preview'" + "newText": "'Microsoft.DataMigration/services/projects/files@2018-07-15-preview'" } }, { - "label": "'Microsoft.DesktopVirtualization/hostPools/msixPackages@2020-11-02-preview'", + "label": "'Microsoft.DataMigration/services/projects/tasks@2017-11-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `hostPools/msixPackages` \nAPI Version: `2020-11-02-preview`" + "value": "Namespace: `Microsoft.DataMigration` \nType: `services/projects/tasks` \nAPI Version: `2017-11-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000040e", + "sortText": "00000383", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DesktopVirtualization/hostPools/msixPackages@2020-11-02-preview'" + "newText": "'Microsoft.DataMigration/services/projects/tasks@2017-11-15-preview'" } }, { - "label": "'Microsoft.DesktopVirtualization/hostPools@2019-01-23-preview'", + "label": "'Microsoft.DataMigration/services/projects/tasks@2018-03-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `hostPools` \nAPI Version: `2019-01-23-preview`" + "value": "Namespace: `Microsoft.DataMigration` \nType: `services/projects/tasks` \nAPI Version: `2018-03-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000040d", + "sortText": "00000382", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DesktopVirtualization/hostPools@2019-01-23-preview'" + "newText": "'Microsoft.DataMigration/services/projects/tasks@2018-03-15-preview'" } }, { - "label": "'Microsoft.DesktopVirtualization/hostPools@2019-09-24-preview'", + "label": "'Microsoft.DataMigration/services/projects/tasks@2018-03-31-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `hostPools` \nAPI Version: `2019-09-24-preview`" + "value": "Namespace: `Microsoft.DataMigration` \nType: `services/projects/tasks` \nAPI Version: `2018-03-31-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000040c", + "sortText": "00000381", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DesktopVirtualization/hostPools@2019-09-24-preview'" + "newText": "'Microsoft.DataMigration/services/projects/tasks@2018-03-31-preview'" } }, { - "label": "'Microsoft.DesktopVirtualization/hostPools@2019-12-10-preview'", + "label": "'Microsoft.DataMigration/services/projects/tasks@2018-04-19'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `hostPools` \nAPI Version: `2019-12-10-preview`" + "value": "Namespace: `Microsoft.DataMigration` \nType: `services/projects/tasks` \nAPI Version: `2018-04-19`" }, "deprecated": false, "preselect": false, - "sortText": "0000040b", + "sortText": "00000380", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DesktopVirtualization/hostPools@2019-12-10-preview'" + "newText": "'Microsoft.DataMigration/services/projects/tasks@2018-04-19'" } }, { - "label": "'Microsoft.DesktopVirtualization/hostPools@2020-09-21-preview'", + "label": "'Microsoft.DataMigration/services/projects/tasks@2018-07-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `hostPools` \nAPI Version: `2020-09-21-preview`" + "value": "Namespace: `Microsoft.DataMigration` \nType: `services/projects/tasks` \nAPI Version: `2018-07-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000040a", + "sortText": "0000037f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DesktopVirtualization/hostPools@2020-09-21-preview'" + "newText": "'Microsoft.DataMigration/services/projects/tasks@2018-07-15-preview'" } }, { - "label": "'Microsoft.DesktopVirtualization/hostPools@2020-10-19-preview'", + "label": "'Microsoft.DataMigration/services/projects@2017-11-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `hostPools` \nAPI Version: `2020-10-19-preview`" + "value": "Namespace: `Microsoft.DataMigration` \nType: `services/projects` \nAPI Version: `2017-11-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000409", + "sortText": "0000037d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DesktopVirtualization/hostPools@2020-10-19-preview'" + "newText": "'Microsoft.DataMigration/services/projects@2017-11-15-preview'" } }, { - "label": "'Microsoft.DesktopVirtualization/hostPools@2020-11-02-preview'", + "label": "'Microsoft.DataMigration/services/projects@2018-03-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `hostPools` \nAPI Version: `2020-11-02-preview`" + "value": "Namespace: `Microsoft.DataMigration` \nType: `services/projects` \nAPI Version: `2018-03-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000408", + "sortText": "0000037c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DesktopVirtualization/hostPools@2020-11-02-preview'" + "newText": "'Microsoft.DataMigration/services/projects@2018-03-15-preview'" } }, { - "label": "'Microsoft.DesktopVirtualization/workspaces@2019-01-23-preview'", + "label": "'Microsoft.DataMigration/services/projects@2018-03-31-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `workspaces` \nAPI Version: `2019-01-23-preview`" + "value": "Namespace: `Microsoft.DataMigration` \nType: `services/projects` \nAPI Version: `2018-03-31-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000416", + "sortText": "0000037b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DesktopVirtualization/workspaces@2019-01-23-preview'" + "newText": "'Microsoft.DataMigration/services/projects@2018-03-31-preview'" } }, { - "label": "'Microsoft.DesktopVirtualization/workspaces@2019-09-24-preview'", + "label": "'Microsoft.DataMigration/services/projects@2018-04-19'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `workspaces` \nAPI Version: `2019-09-24-preview`" + "value": "Namespace: `Microsoft.DataMigration` \nType: `services/projects` \nAPI Version: `2018-04-19`" }, "deprecated": false, "preselect": false, - "sortText": "00000415", + "sortText": "0000037a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DesktopVirtualization/workspaces@2019-09-24-preview'" + "newText": "'Microsoft.DataMigration/services/projects@2018-04-19'" } }, { - "label": "'Microsoft.DesktopVirtualization/workspaces@2019-12-10-preview'", + "label": "'Microsoft.DataMigration/services/projects@2018-07-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `workspaces` \nAPI Version: `2019-12-10-preview`" + "value": "Namespace: `Microsoft.DataMigration` \nType: `services/projects` \nAPI Version: `2018-07-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000414", + "sortText": "00000379", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DesktopVirtualization/workspaces@2019-12-10-preview'" + "newText": "'Microsoft.DataMigration/services/projects@2018-07-15-preview'" } }, { - "label": "'Microsoft.DesktopVirtualization/workspaces@2020-09-21-preview'", + "label": "'Microsoft.DataMigration/services/serviceTasks@2018-07-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `workspaces` \nAPI Version: `2020-09-21-preview`" + "value": "Namespace: `Microsoft.DataMigration` \nType: `services/serviceTasks` \nAPI Version: `2018-07-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000413", + "sortText": "00000384", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DesktopVirtualization/workspaces@2020-09-21-preview'" + "newText": "'Microsoft.DataMigration/services/serviceTasks@2018-07-15-preview'" } }, { - "label": "'Microsoft.DesktopVirtualization/workspaces@2020-10-19-preview'", + "label": "'Microsoft.DataMigration/services@2017-11-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `workspaces` \nAPI Version: `2020-10-19-preview`" + "value": "Namespace: `Microsoft.DataMigration` \nType: `services` \nAPI Version: `2017-11-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000412", + "sortText": "00000378", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DesktopVirtualization/workspaces@2020-10-19-preview'" + "newText": "'Microsoft.DataMigration/services@2017-11-15-preview'" } }, { - "label": "'Microsoft.DesktopVirtualization/workspaces@2020-11-02-preview'", + "label": "'Microsoft.DataMigration/services@2018-03-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `workspaces` \nAPI Version: `2020-11-02-preview`" + "value": "Namespace: `Microsoft.DataMigration` \nType: `services` \nAPI Version: `2018-03-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000411", + "sortText": "00000377", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DesktopVirtualization/workspaces@2020-11-02-preview'" + "newText": "'Microsoft.DataMigration/services@2018-03-15-preview'" } }, { - "label": "'Microsoft.DevOps/pipelines@2019-07-01-preview'", + "label": "'Microsoft.DataMigration/services@2018-03-31-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevOps` \nType: `pipelines` \nAPI Version: `2019-07-01-preview`" + "value": "Namespace: `Microsoft.DataMigration` \nType: `services` \nAPI Version: `2018-03-31-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000449", + "sortText": "00000376", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevOps/pipelines@2019-07-01-preview'" + "newText": "'Microsoft.DataMigration/services@2018-03-31-preview'" } }, { - "label": "'Microsoft.DevSpaces/controllers@2019-04-01'", + "label": "'Microsoft.DataMigration/services@2018-04-19'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevSpaces` \nType: `controllers` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.DataMigration` \nType: `services` \nAPI Version: `2018-04-19`" }, "deprecated": false, "preselect": false, - "sortText": "0000044a", + "sortText": "00000375", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevSpaces/controllers@2019-04-01'" + "newText": "'Microsoft.DataMigration/services@2018-04-19'" } }, { - "label": "'Microsoft.DevTestLab/labs/artifactsources@2015-05-21-preview'", + "label": "'Microsoft.DataMigration/services@2018-07-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/artifactsources` \nAPI Version: `2015-05-21-preview`" + "value": "Namespace: `Microsoft.DataMigration` \nType: `services` \nAPI Version: `2018-07-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000450", + "sortText": "00000374", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/artifactsources@2015-05-21-preview'" + "newText": "'Microsoft.DataMigration/services@2018-07-15-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/artifactsources@2016-05-15'", + "label": "'Microsoft.DataShare/accounts/shareSubscriptions/dataSetMappings@2018-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/artifactsources` \nAPI Version: `2016-05-15`" + "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shareSubscriptions/dataSetMappings` \nAPI Version: `2018-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000044f", + "sortText": "00000392", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/artifactsources@2016-05-15'" + "newText": "'Microsoft.DataShare/accounts/shareSubscriptions/dataSetMappings@2018-11-01-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/artifactsources@2018-09-15'", + "label": "'Microsoft.DataShare/accounts/shareSubscriptions/dataSetMappings@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/artifactsources` \nAPI Version: `2018-09-15`" + "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shareSubscriptions/dataSetMappings` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000044e", + "sortText": "00000391", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/artifactsources@2018-09-15'" + "newText": "'Microsoft.DataShare/accounts/shareSubscriptions/dataSetMappings@2019-11-01'" } }, { - "label": "'Microsoft.DevTestLab/labs/costs@2016-05-15'", + "label": "'Microsoft.DataShare/accounts/shareSubscriptions/triggers@2018-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/costs` \nAPI Version: `2016-05-15`" + "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shareSubscriptions/triggers` \nAPI Version: `2018-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000452", + "sortText": "00000394", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/costs@2016-05-15'" + "newText": "'Microsoft.DataShare/accounts/shareSubscriptions/triggers@2018-11-01-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/costs@2018-09-15'", + "label": "'Microsoft.DataShare/accounts/shareSubscriptions/triggers@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/costs` \nAPI Version: `2018-09-15`" + "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shareSubscriptions/triggers` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000451", + "sortText": "00000393", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/costs@2018-09-15'" + "newText": "'Microsoft.DataShare/accounts/shareSubscriptions/triggers@2019-11-01'" } }, { - "label": "'Microsoft.DevTestLab/labs/customimages@2015-05-21-preview'", + "label": "'Microsoft.DataShare/accounts/shareSubscriptions@2018-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/customimages` \nAPI Version: `2015-05-21-preview`" + "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shareSubscriptions` \nAPI Version: `2018-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000455", + "sortText": "00000390", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/customimages@2015-05-21-preview'" + "newText": "'Microsoft.DataShare/accounts/shareSubscriptions@2018-11-01-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/customimages@2016-05-15'", + "label": "'Microsoft.DataShare/accounts/shareSubscriptions@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/customimages` \nAPI Version: `2016-05-15`" + "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shareSubscriptions` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000454", + "sortText": "0000038f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/customimages@2016-05-15'" + "newText": "'Microsoft.DataShare/accounts/shareSubscriptions@2019-11-01'" } }, { - "label": "'Microsoft.DevTestLab/labs/customimages@2018-09-15'", + "label": "'Microsoft.DataShare/accounts/shares/dataSets@2018-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/customimages` \nAPI Version: `2018-09-15`" + "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shares/dataSets` \nAPI Version: `2018-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000453", + "sortText": "0000038a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/customimages@2018-09-15'" + "newText": "'Microsoft.DataShare/accounts/shares/dataSets@2018-11-01-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/formulas@2015-05-21-preview'", + "label": "'Microsoft.DataShare/accounts/shares/dataSets@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/formulas` \nAPI Version: `2015-05-21-preview`" + "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shares/dataSets` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000458", + "sortText": "00000389", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/formulas@2015-05-21-preview'" + "newText": "'Microsoft.DataShare/accounts/shares/dataSets@2019-11-01'" } }, { - "label": "'Microsoft.DevTestLab/labs/formulas@2016-05-15'", + "label": "'Microsoft.DataShare/accounts/shares/invitations@2018-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/formulas` \nAPI Version: `2016-05-15`" + "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shares/invitations` \nAPI Version: `2018-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000457", + "sortText": "0000038c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/formulas@2016-05-15'" + "newText": "'Microsoft.DataShare/accounts/shares/invitations@2018-11-01-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/formulas@2018-09-15'", + "label": "'Microsoft.DataShare/accounts/shares/invitations@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/formulas` \nAPI Version: `2018-09-15`" + "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shares/invitations` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000456", + "sortText": "0000038b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/formulas@2018-09-15'" + "newText": "'Microsoft.DataShare/accounts/shares/invitations@2019-11-01'" } }, { - "label": "'Microsoft.DevTestLab/labs/notificationchannels@2016-05-15'", + "label": "'Microsoft.DataShare/accounts/shares/synchronizationSettings@2018-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/notificationchannels` \nAPI Version: `2016-05-15`" + "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shares/synchronizationSettings` \nAPI Version: `2018-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000045a", + "sortText": "0000038e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/notificationchannels@2016-05-15'" + "newText": "'Microsoft.DataShare/accounts/shares/synchronizationSettings@2018-11-01-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/notificationchannels@2018-09-15'", + "label": "'Microsoft.DataShare/accounts/shares/synchronizationSettings@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/notificationchannels` \nAPI Version: `2018-09-15`" + "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shares/synchronizationSettings` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000459", + "sortText": "0000038d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/notificationchannels@2018-09-15'" + "newText": "'Microsoft.DataShare/accounts/shares/synchronizationSettings@2019-11-01'" } }, { - "label": "'Microsoft.DevTestLab/labs/policysets/policies@2015-05-21-preview'", + "label": "'Microsoft.DataShare/accounts/shares@2018-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/policysets/policies` \nAPI Version: `2015-05-21-preview`" + "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shares` \nAPI Version: `2018-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000045d", + "sortText": "00000388", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/policysets/policies@2015-05-21-preview'" + "newText": "'Microsoft.DataShare/accounts/shares@2018-11-01-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/policysets/policies@2016-05-15'", + "label": "'Microsoft.DataShare/accounts/shares@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/policysets/policies` \nAPI Version: `2016-05-15`" + "value": "Namespace: `Microsoft.DataShare` \nType: `accounts/shares` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000045c", + "sortText": "00000387", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/policysets/policies@2016-05-15'" + "newText": "'Microsoft.DataShare/accounts/shares@2019-11-01'" } }, { - "label": "'Microsoft.DevTestLab/labs/policysets/policies@2018-09-15'", + "label": "'Microsoft.DataShare/accounts@2018-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/policysets/policies` \nAPI Version: `2018-09-15`" + "value": "Namespace: `Microsoft.DataShare` \nType: `accounts` \nAPI Version: `2018-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000045b", + "sortText": "00000386", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/policysets/policies@2018-09-15'" + "newText": "'Microsoft.DataShare/accounts@2018-11-01-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/schedules@2015-05-21-preview'", + "label": "'Microsoft.DataShare/accounts@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/schedules` \nAPI Version: `2015-05-21-preview`" + "value": "Namespace: `Microsoft.DataShare` \nType: `accounts` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000460", + "sortText": "00000385", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/schedules@2015-05-21-preview'" + "newText": "'Microsoft.DataShare/accounts@2019-11-01'" } }, { - "label": "'Microsoft.DevTestLab/labs/schedules@2016-05-15'", + "label": "'Microsoft.Databricks/workspaces/virtualNetworkPeerings@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/schedules` \nAPI Version: `2016-05-15`" + "value": "Namespace: `Microsoft.Databricks` \nType: `workspaces/virtualNetworkPeerings` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000045f", + "sortText": "00000350", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/schedules@2016-05-15'" + "newText": "'Microsoft.Databricks/workspaces/virtualNetworkPeerings@2018-04-01'" } }, { - "label": "'Microsoft.DevTestLab/labs/schedules@2018-09-15'", + "label": "'Microsoft.Databricks/workspaces@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/schedules` \nAPI Version: `2018-09-15`" + "value": "Namespace: `Microsoft.Databricks` \nType: `workspaces` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000045e", + "sortText": "0000034f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/schedules@2018-09-15'" + "newText": "'Microsoft.Databricks/workspaces@2018-04-01'" } }, { - "label": "'Microsoft.DevTestLab/labs/servicerunners@2016-05-15'", + "label": "'Microsoft.Datadog/monitors/singleSignOnConfigurations@2020-02-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/servicerunners` \nAPI Version: `2016-05-15`" + "value": "Namespace: `Microsoft.Datadog` \nType: `monitors/singleSignOnConfigurations` \nAPI Version: `2020-02-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000462", + "sortText": "00000353", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/servicerunners@2016-05-15'" + "newText": "'Microsoft.Datadog/monitors/singleSignOnConfigurations@2020-02-01-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/servicerunners@2018-09-15'", + "label": "'Microsoft.Datadog/monitors/tagRules@2020-02-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/servicerunners` \nAPI Version: `2018-09-15`" + "value": "Namespace: `Microsoft.Datadog` \nType: `monitors/tagRules` \nAPI Version: `2020-02-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000461", + "sortText": "00000354", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/servicerunners@2018-09-15'" + "newText": "'Microsoft.Datadog/monitors/tagRules@2020-02-01-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/users/disks@2016-05-15'", + "label": "'Microsoft.Datadog/monitors@2020-02-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/users/disks` \nAPI Version: `2016-05-15`" + "value": "Namespace: `Microsoft.Datadog` \nType: `monitors` \nAPI Version: `2020-02-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000466", + "sortText": "00000352", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/users/disks@2016-05-15'" + "newText": "'Microsoft.Datadog/monitors@2020-02-01-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/users/disks@2018-09-15'", + "label": "'Microsoft.DeploymentManager/artifactSources@2018-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/users/disks` \nAPI Version: `2018-09-15`" + "value": "Namespace: `Microsoft.DeploymentManager` \nType: `artifactSources` \nAPI Version: `2018-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000465", + "sortText": "000003c6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/users/disks@2018-09-15'" + "newText": "'Microsoft.DeploymentManager/artifactSources@2018-09-01-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/users/environments@2016-05-15'", + "label": "'Microsoft.DeploymentManager/artifactSources@2019-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/users/environments` \nAPI Version: `2016-05-15`" + "value": "Namespace: `Microsoft.DeploymentManager` \nType: `artifactSources` \nAPI Version: `2019-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000468", + "sortText": "000003c5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/users/environments@2016-05-15'" + "newText": "'Microsoft.DeploymentManager/artifactSources@2019-11-01-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/users/environments@2018-09-15'", + "label": "'Microsoft.DeploymentManager/rollouts@2018-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/users/environments` \nAPI Version: `2018-09-15`" + "value": "Namespace: `Microsoft.DeploymentManager` \nType: `rollouts` \nAPI Version: `2018-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000467", + "sortText": "000003c8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/users/environments@2018-09-15'" + "newText": "'Microsoft.DeploymentManager/rollouts@2018-09-01-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/users/secrets@2016-05-15'", + "label": "'Microsoft.DeploymentManager/rollouts@2019-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/users/secrets` \nAPI Version: `2016-05-15`" + "value": "Namespace: `Microsoft.DeploymentManager` \nType: `rollouts` \nAPI Version: `2019-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000046a", + "sortText": "000003c7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/users/secrets@2016-05-15'" + "newText": "'Microsoft.DeploymentManager/rollouts@2019-11-01-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/users/secrets@2018-09-15'", + "label": "'Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits@2018-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/users/secrets` \nAPI Version: `2018-09-15`" + "value": "Namespace: `Microsoft.DeploymentManager` \nType: `serviceTopologies/services/serviceUnits` \nAPI Version: `2018-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000469", + "sortText": "000003ce", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/users/secrets@2018-09-15'" + "newText": "'Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits@2018-09-01-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/users/servicefabrics/schedules@2018-09-15'", + "label": "'Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits@2019-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/users/servicefabrics/schedules` \nAPI Version: `2018-09-15`" + "value": "Namespace: `Microsoft.DeploymentManager` \nType: `serviceTopologies/services/serviceUnits` \nAPI Version: `2019-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000046c", + "sortText": "000003cd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/users/servicefabrics/schedules@2018-09-15'" + "newText": "'Microsoft.DeploymentManager/serviceTopologies/services/serviceUnits@2019-11-01-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/users/servicefabrics@2018-09-15'", + "label": "'Microsoft.DeploymentManager/serviceTopologies/services@2018-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/users/servicefabrics` \nAPI Version: `2018-09-15`" + "value": "Namespace: `Microsoft.DeploymentManager` \nType: `serviceTopologies/services` \nAPI Version: `2018-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000046b", + "sortText": "000003cc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/users/servicefabrics@2018-09-15'" + "newText": "'Microsoft.DeploymentManager/serviceTopologies/services@2018-09-01-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/users@2016-05-15'", + "label": "'Microsoft.DeploymentManager/serviceTopologies/services@2019-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/users` \nAPI Version: `2016-05-15`" + "value": "Namespace: `Microsoft.DeploymentManager` \nType: `serviceTopologies/services` \nAPI Version: `2019-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000464", + "sortText": "000003cb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/users@2016-05-15'" + "newText": "'Microsoft.DeploymentManager/serviceTopologies/services@2019-11-01-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/users@2018-09-15'", + "label": "'Microsoft.DeploymentManager/serviceTopologies@2018-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/users` \nAPI Version: `2018-09-15`" + "value": "Namespace: `Microsoft.DeploymentManager` \nType: `serviceTopologies` \nAPI Version: `2018-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000463", + "sortText": "000003ca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/users@2018-09-15'" + "newText": "'Microsoft.DeploymentManager/serviceTopologies@2018-09-01-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/virtualmachines/schedules@2016-05-15'", + "label": "'Microsoft.DeploymentManager/serviceTopologies@2019-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/virtualmachines/schedules` \nAPI Version: `2016-05-15`" + "value": "Namespace: `Microsoft.DeploymentManager` \nType: `serviceTopologies` \nAPI Version: `2019-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000471", + "sortText": "000003c9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/virtualmachines/schedules@2016-05-15'" + "newText": "'Microsoft.DeploymentManager/serviceTopologies@2019-11-01-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/virtualmachines/schedules@2018-09-15'", + "label": "'Microsoft.DeploymentManager/steps@2018-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/virtualmachines/schedules` \nAPI Version: `2018-09-15`" + "value": "Namespace: `Microsoft.DeploymentManager` \nType: `steps` \nAPI Version: `2018-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000470", + "sortText": "000003d0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/virtualmachines/schedules@2018-09-15'" + "newText": "'Microsoft.DeploymentManager/steps@2018-09-01-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/virtualmachines@2015-05-21-preview'", + "label": "'Microsoft.DeploymentManager/steps@2019-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/virtualmachines` \nAPI Version: `2015-05-21-preview`" + "value": "Namespace: `Microsoft.DeploymentManager` \nType: `steps` \nAPI Version: `2019-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000046f", + "sortText": "000003cf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/virtualmachines@2015-05-21-preview'" + "newText": "'Microsoft.DeploymentManager/steps@2019-11-01-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/virtualmachines@2016-05-15'", + "label": "'Microsoft.DesktopVirtualization/applicationGroups/applications@2019-01-23-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/virtualmachines` \nAPI Version: `2016-05-15`" + "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `applicationGroups/applications` \nAPI Version: `2019-01-23-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000046e", + "sortText": "000003dc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/virtualmachines@2016-05-15'" + "newText": "'Microsoft.DesktopVirtualization/applicationGroups/applications@2019-01-23-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/virtualmachines@2018-09-15'", + "label": "'Microsoft.DesktopVirtualization/applicationGroups/applications@2019-09-24-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/virtualmachines` \nAPI Version: `2018-09-15`" + "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `applicationGroups/applications` \nAPI Version: `2019-09-24-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000046d", + "sortText": "000003db", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/virtualmachines@2018-09-15'" + "newText": "'Microsoft.DesktopVirtualization/applicationGroups/applications@2019-09-24-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/virtualnetworks@2015-05-21-preview'", + "label": "'Microsoft.DesktopVirtualization/applicationGroups/applications@2019-12-10-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/virtualnetworks` \nAPI Version: `2015-05-21-preview`" + "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `applicationGroups/applications` \nAPI Version: `2019-12-10-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000474", + "sortText": "000003da", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/virtualnetworks@2015-05-21-preview'" + "newText": "'Microsoft.DesktopVirtualization/applicationGroups/applications@2019-12-10-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/virtualnetworks@2016-05-15'", + "label": "'Microsoft.DesktopVirtualization/applicationGroups/applications@2020-09-21-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/virtualnetworks` \nAPI Version: `2016-05-15`" + "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `applicationGroups/applications` \nAPI Version: `2020-09-21-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000473", + "sortText": "000003d9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/virtualnetworks@2016-05-15'" + "newText": "'Microsoft.DesktopVirtualization/applicationGroups/applications@2020-09-21-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs/virtualnetworks@2018-09-15'", + "label": "'Microsoft.DesktopVirtualization/applicationGroups/applications@2020-10-19-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/virtualnetworks` \nAPI Version: `2018-09-15`" + "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `applicationGroups/applications` \nAPI Version: `2020-10-19-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000472", + "sortText": "000003d8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs/virtualnetworks@2018-09-15'" + "newText": "'Microsoft.DesktopVirtualization/applicationGroups/applications@2020-10-19-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs@2015-05-21-preview'", + "label": "'Microsoft.DesktopVirtualization/applicationGroups/applications@2020-11-02-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs` \nAPI Version: `2015-05-21-preview`" + "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `applicationGroups/applications` \nAPI Version: `2020-11-02-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000044d", + "sortText": "000003d7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs@2015-05-21-preview'" + "newText": "'Microsoft.DesktopVirtualization/applicationGroups/applications@2020-11-02-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs@2016-05-15'", + "label": "'Microsoft.DesktopVirtualization/applicationGroups@2019-01-23-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs` \nAPI Version: `2016-05-15`" + "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `applicationGroups` \nAPI Version: `2019-01-23-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000044c", + "sortText": "000003d6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs@2016-05-15'" + "newText": "'Microsoft.DesktopVirtualization/applicationGroups@2019-01-23-preview'" } }, { - "label": "'Microsoft.DevTestLab/labs@2018-09-15'", + "label": "'Microsoft.DesktopVirtualization/applicationGroups@2019-09-24-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs` \nAPI Version: `2018-09-15`" + "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `applicationGroups` \nAPI Version: `2019-09-24-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000044b", + "sortText": "000003d5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/labs@2018-09-15'" + "newText": "'Microsoft.DesktopVirtualization/applicationGroups@2019-09-24-preview'" } }, { - "label": "'Microsoft.DevTestLab/schedules@2016-05-15'", + "label": "'Microsoft.DesktopVirtualization/applicationGroups@2019-12-10-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `schedules` \nAPI Version: `2016-05-15`" + "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `applicationGroups` \nAPI Version: `2019-12-10-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000476", + "sortText": "000003d4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/schedules@2016-05-15'" + "newText": "'Microsoft.DesktopVirtualization/applicationGroups@2019-12-10-preview'" } }, { - "label": "'Microsoft.DevTestLab/schedules@2018-09-15'", + "label": "'Microsoft.DesktopVirtualization/applicationGroups@2020-09-21-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DevTestLab` \nType: `schedules` \nAPI Version: `2018-09-15`" + "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `applicationGroups` \nAPI Version: `2020-09-21-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000475", + "sortText": "000003d3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DevTestLab/schedules@2018-09-15'" + "newText": "'Microsoft.DesktopVirtualization/applicationGroups@2020-09-21-preview'" } }, { - "label": "'Microsoft.Devices/IotHubs/certificates@2017-07-01'", + "label": "'Microsoft.DesktopVirtualization/applicationGroups@2020-10-19-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/certificates` \nAPI Version: `2017-07-01`" + "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `applicationGroups` \nAPI Version: `2020-10-19-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000432", + "sortText": "000003d2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs/certificates@2017-07-01'" + "newText": "'Microsoft.DesktopVirtualization/applicationGroups@2020-10-19-preview'" } }, { - "label": "'Microsoft.Devices/IotHubs/certificates@2018-01-22'", + "label": "'Microsoft.DesktopVirtualization/applicationGroups@2020-11-02-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/certificates` \nAPI Version: `2018-01-22`" + "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `applicationGroups` \nAPI Version: `2020-11-02-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000431", + "sortText": "000003d1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs/certificates@2018-01-22'" + "newText": "'Microsoft.DesktopVirtualization/applicationGroups@2020-11-02-preview'" } }, { - "label": "'Microsoft.Devices/IotHubs/certificates@2018-04-01'", + "label": "'Microsoft.DesktopVirtualization/hostPools/msixPackages@2020-09-21-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/certificates` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `hostPools/msixPackages` \nAPI Version: `2020-09-21-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000430", + "sortText": "000003e5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs/certificates@2018-04-01'" + "newText": "'Microsoft.DesktopVirtualization/hostPools/msixPackages@2020-09-21-preview'" } }, { - "label": "'Microsoft.Devices/IotHubs/certificates@2018-12-01-preview'", + "label": "'Microsoft.DesktopVirtualization/hostPools/msixPackages@2020-10-19-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/certificates` \nAPI Version: `2018-12-01-preview`" + "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `hostPools/msixPackages` \nAPI Version: `2020-10-19-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000042f", + "sortText": "000003e4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs/certificates@2018-12-01-preview'" + "newText": "'Microsoft.DesktopVirtualization/hostPools/msixPackages@2020-10-19-preview'" } }, { - "label": "'Microsoft.Devices/IotHubs/certificates@2019-03-22'", + "label": "'Microsoft.DesktopVirtualization/hostPools/msixPackages@2020-11-02-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/certificates` \nAPI Version: `2019-03-22`" + "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `hostPools/msixPackages` \nAPI Version: `2020-11-02-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000042e", + "sortText": "000003e3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs/certificates@2019-03-22'" + "newText": "'Microsoft.DesktopVirtualization/hostPools/msixPackages@2020-11-02-preview'" } }, { - "label": "'Microsoft.Devices/IotHubs/certificates@2019-03-22-preview'", + "label": "'Microsoft.DesktopVirtualization/hostPools@2019-01-23-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/certificates` \nAPI Version: `2019-03-22-preview`" + "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `hostPools` \nAPI Version: `2019-01-23-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000042d", + "sortText": "000003e2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs/certificates@2019-03-22-preview'" + "newText": "'Microsoft.DesktopVirtualization/hostPools@2019-01-23-preview'" } }, { - "label": "'Microsoft.Devices/IotHubs/certificates@2019-07-01-preview'", + "label": "'Microsoft.DesktopVirtualization/hostPools@2019-09-24-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/certificates` \nAPI Version: `2019-07-01-preview`" + "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `hostPools` \nAPI Version: `2019-09-24-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000042c", + "sortText": "000003e1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs/certificates@2019-07-01-preview'" + "newText": "'Microsoft.DesktopVirtualization/hostPools@2019-09-24-preview'" } }, { - "label": "'Microsoft.Devices/IotHubs/certificates@2019-11-04'", + "label": "'Microsoft.DesktopVirtualization/hostPools@2019-12-10-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/certificates` \nAPI Version: `2019-11-04`" + "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `hostPools` \nAPI Version: `2019-12-10-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000042b", + "sortText": "000003e0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs/certificates@2019-11-04'" + "newText": "'Microsoft.DesktopVirtualization/hostPools@2019-12-10-preview'" } }, { - "label": "'Microsoft.Devices/IotHubs/certificates@2020-03-01'", + "label": "'Microsoft.DesktopVirtualization/hostPools@2020-09-21-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/certificates` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `hostPools` \nAPI Version: `2020-09-21-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000042a", + "sortText": "000003df", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs/certificates@2020-03-01'" + "newText": "'Microsoft.DesktopVirtualization/hostPools@2020-09-21-preview'" } }, { - "label": "'Microsoft.Devices/IotHubs/certificates@2020-04-01'", + "label": "'Microsoft.DesktopVirtualization/hostPools@2020-10-19-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/certificates` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `hostPools` \nAPI Version: `2020-10-19-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000429", + "sortText": "000003de", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs/certificates@2020-04-01'" + "newText": "'Microsoft.DesktopVirtualization/hostPools@2020-10-19-preview'" } }, { - "label": "'Microsoft.Devices/IotHubs/certificates@2020-06-15'", + "label": "'Microsoft.DesktopVirtualization/hostPools@2020-11-02-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/certificates` \nAPI Version: `2020-06-15`" + "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `hostPools` \nAPI Version: `2020-11-02-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000428", + "sortText": "000003dd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs/certificates@2020-06-15'" + "newText": "'Microsoft.DesktopVirtualization/hostPools@2020-11-02-preview'" } }, { - "label": "'Microsoft.Devices/IotHubs/certificates@2020-07-10-preview'", + "label": "'Microsoft.DesktopVirtualization/workspaces@2019-01-23-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/certificates` \nAPI Version: `2020-07-10-preview`" + "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `workspaces` \nAPI Version: `2019-01-23-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000427", + "sortText": "000003eb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs/certificates@2020-07-10-preview'" + "newText": "'Microsoft.DesktopVirtualization/workspaces@2019-01-23-preview'" } }, { - "label": "'Microsoft.Devices/IotHubs/certificates@2020-08-01'", + "label": "'Microsoft.DesktopVirtualization/workspaces@2019-09-24-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/certificates` \nAPI Version: `2020-08-01`" + "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `workspaces` \nAPI Version: `2019-09-24-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000426", + "sortText": "000003ea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs/certificates@2020-08-01'" + "newText": "'Microsoft.DesktopVirtualization/workspaces@2019-09-24-preview'" } }, { - "label": "'Microsoft.Devices/IotHubs/eventHubEndpoints/ConsumerGroups@2020-06-15'", + "label": "'Microsoft.DesktopVirtualization/workspaces@2019-12-10-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/eventHubEndpoints/ConsumerGroups` \nAPI Version: `2020-06-15`" + "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `workspaces` \nAPI Version: `2019-12-10-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000435", + "sortText": "000003e9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs/eventHubEndpoints/ConsumerGroups@2020-06-15'" + "newText": "'Microsoft.DesktopVirtualization/workspaces@2019-12-10-preview'" } }, { - "label": "'Microsoft.Devices/IotHubs/eventHubEndpoints/ConsumerGroups@2020-07-10-preview'", + "label": "'Microsoft.DesktopVirtualization/workspaces@2020-09-21-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/eventHubEndpoints/ConsumerGroups` \nAPI Version: `2020-07-10-preview`" + "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `workspaces` \nAPI Version: `2020-09-21-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000434", + "sortText": "000003e8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs/eventHubEndpoints/ConsumerGroups@2020-07-10-preview'" + "newText": "'Microsoft.DesktopVirtualization/workspaces@2020-09-21-preview'" } }, { - "label": "'Microsoft.Devices/IotHubs/eventHubEndpoints/ConsumerGroups@2020-08-01'", + "label": "'Microsoft.DesktopVirtualization/workspaces@2020-10-19-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/eventHubEndpoints/ConsumerGroups` \nAPI Version: `2020-08-01`" + "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `workspaces` \nAPI Version: `2020-10-19-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000433", + "sortText": "000003e7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs/eventHubEndpoints/ConsumerGroups@2020-08-01'" + "newText": "'Microsoft.DesktopVirtualization/workspaces@2020-10-19-preview'" } }, { - "label": "'Microsoft.Devices/IotHubs@2016-02-03'", + "label": "'Microsoft.DesktopVirtualization/workspaces@2020-11-02-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2016-02-03`" + "value": "Namespace: `Microsoft.DesktopVirtualization` \nType: `workspaces` \nAPI Version: `2020-11-02-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000425", + "sortText": "000003e6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs@2016-02-03'" + "newText": "'Microsoft.DesktopVirtualization/workspaces@2020-11-02-preview'" } }, { - "label": "'Microsoft.Devices/IotHubs@2017-01-19'", + "label": "'Microsoft.DevOps/pipelines@2019-07-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2017-01-19`" + "value": "Namespace: `Microsoft.DevOps` \nType: `pipelines` \nAPI Version: `2019-07-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000424", + "sortText": "0000041f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs@2017-01-19'" + "newText": "'Microsoft.DevOps/pipelines@2019-07-01-preview'" } }, { - "label": "'Microsoft.Devices/IotHubs@2017-07-01'", + "label": "'Microsoft.DevOps/pipelines@2020-07-13-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2017-07-01`" + "value": "Namespace: `Microsoft.DevOps` \nType: `pipelines` \nAPI Version: `2020-07-13-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000423", + "sortText": "0000041e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs@2017-07-01'" + "newText": "'Microsoft.DevOps/pipelines@2020-07-13-preview'" } }, { - "label": "'Microsoft.Devices/IotHubs@2018-01-22'", + "label": "'Microsoft.DevSpaces/controllers@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2018-01-22`" + "value": "Namespace: `Microsoft.DevSpaces` \nType: `controllers` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000422", + "sortText": "00000420", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs@2018-01-22'" + "newText": "'Microsoft.DevSpaces/controllers@2019-04-01'" } }, { - "label": "'Microsoft.Devices/IotHubs@2018-04-01'", + "label": "'Microsoft.DevTestLab/labs/artifactsources@2015-05-21-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/artifactsources` \nAPI Version: `2015-05-21-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000421", + "sortText": "00000426", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs@2018-04-01'" + "newText": "'Microsoft.DevTestLab/labs/artifactsources@2015-05-21-preview'" } }, { - "label": "'Microsoft.Devices/IotHubs@2018-12-01-preview'", + "label": "'Microsoft.DevTestLab/labs/artifactsources@2016-05-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2018-12-01-preview`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/artifactsources` \nAPI Version: `2016-05-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000420", + "sortText": "00000425", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs@2018-12-01-preview'" + "newText": "'Microsoft.DevTestLab/labs/artifactsources@2016-05-15'" } }, { - "label": "'Microsoft.Devices/IotHubs@2019-03-22'", + "label": "'Microsoft.DevTestLab/labs/artifactsources@2018-09-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2019-03-22`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/artifactsources` \nAPI Version: `2018-09-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000041f", + "sortText": "00000424", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs@2019-03-22'" + "newText": "'Microsoft.DevTestLab/labs/artifactsources@2018-09-15'" } }, { - "label": "'Microsoft.Devices/IotHubs@2019-03-22-preview'", + "label": "'Microsoft.DevTestLab/labs/costs@2016-05-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2019-03-22-preview`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/costs` \nAPI Version: `2016-05-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000041e", + "sortText": "00000428", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs@2019-03-22-preview'" + "newText": "'Microsoft.DevTestLab/labs/costs@2016-05-15'" } }, { - "label": "'Microsoft.Devices/IotHubs@2019-07-01-preview'", + "label": "'Microsoft.DevTestLab/labs/costs@2018-09-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2019-07-01-preview`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/costs` \nAPI Version: `2018-09-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000041d", + "sortText": "00000427", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs@2019-07-01-preview'" + "newText": "'Microsoft.DevTestLab/labs/costs@2018-09-15'" } }, { - "label": "'Microsoft.Devices/IotHubs@2019-11-04'", + "label": "'Microsoft.DevTestLab/labs/customimages@2015-05-21-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2019-11-04`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/customimages` \nAPI Version: `2015-05-21-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000041c", + "sortText": "0000042b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs@2019-11-04'" + "newText": "'Microsoft.DevTestLab/labs/customimages@2015-05-21-preview'" } }, { - "label": "'Microsoft.Devices/IotHubs@2020-03-01'", + "label": "'Microsoft.DevTestLab/labs/customimages@2016-05-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/customimages` \nAPI Version: `2016-05-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000041b", + "sortText": "0000042a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs@2020-03-01'" + "newText": "'Microsoft.DevTestLab/labs/customimages@2016-05-15'" } }, { - "label": "'Microsoft.Devices/IotHubs@2020-04-01'", + "label": "'Microsoft.DevTestLab/labs/customimages@2018-09-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/customimages` \nAPI Version: `2018-09-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000041a", + "sortText": "00000429", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs@2020-04-01'" + "newText": "'Microsoft.DevTestLab/labs/customimages@2018-09-15'" } }, { - "label": "'Microsoft.Devices/IotHubs@2020-06-15'", + "label": "'Microsoft.DevTestLab/labs/formulas@2015-05-21-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2020-06-15`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/formulas` \nAPI Version: `2015-05-21-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000419", + "sortText": "0000042e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs@2020-06-15'" + "newText": "'Microsoft.DevTestLab/labs/formulas@2015-05-21-preview'" } }, { - "label": "'Microsoft.Devices/IotHubs@2020-07-10-preview'", + "label": "'Microsoft.DevTestLab/labs/formulas@2016-05-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2020-07-10-preview`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/formulas` \nAPI Version: `2016-05-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000418", + "sortText": "0000042d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs@2020-07-10-preview'" + "newText": "'Microsoft.DevTestLab/labs/formulas@2016-05-15'" } }, { - "label": "'Microsoft.Devices/IotHubs@2020-08-01'", + "label": "'Microsoft.DevTestLab/labs/formulas@2018-09-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2020-08-01`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/formulas` \nAPI Version: `2018-09-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000417", + "sortText": "0000042c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/IotHubs@2020-08-01'" + "newText": "'Microsoft.DevTestLab/labs/formulas@2018-09-15'" } }, { - "label": "'Microsoft.Devices/iotHubs/privateEndpointConnections@2020-03-01'", + "label": "'Microsoft.DevTestLab/labs/notificationchannels@2016-05-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `iotHubs/privateEndpointConnections` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/notificationchannels` \nAPI Version: `2016-05-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000043a", + "sortText": "00000430", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/iotHubs/privateEndpointConnections@2020-03-01'" + "newText": "'Microsoft.DevTestLab/labs/notificationchannels@2016-05-15'" } }, { - "label": "'Microsoft.Devices/iotHubs/privateEndpointConnections@2020-04-01'", + "label": "'Microsoft.DevTestLab/labs/notificationchannels@2018-09-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `iotHubs/privateEndpointConnections` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/notificationchannels` \nAPI Version: `2018-09-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000439", + "sortText": "0000042f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/iotHubs/privateEndpointConnections@2020-04-01'" + "newText": "'Microsoft.DevTestLab/labs/notificationchannels@2018-09-15'" } }, { - "label": "'Microsoft.Devices/iotHubs/privateEndpointConnections@2020-06-15'", + "label": "'Microsoft.DevTestLab/labs/policysets/policies@2015-05-21-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `iotHubs/privateEndpointConnections` \nAPI Version: `2020-06-15`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/policysets/policies` \nAPI Version: `2015-05-21-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000438", + "sortText": "00000433", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/iotHubs/privateEndpointConnections@2020-06-15'" + "newText": "'Microsoft.DevTestLab/labs/policysets/policies@2015-05-21-preview'" } }, { - "label": "'Microsoft.Devices/iotHubs/privateEndpointConnections@2020-07-10-preview'", + "label": "'Microsoft.DevTestLab/labs/policysets/policies@2016-05-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `iotHubs/privateEndpointConnections` \nAPI Version: `2020-07-10-preview`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/policysets/policies` \nAPI Version: `2016-05-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000437", + "sortText": "00000432", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/iotHubs/privateEndpointConnections@2020-07-10-preview'" + "newText": "'Microsoft.DevTestLab/labs/policysets/policies@2016-05-15'" } }, { - "label": "'Microsoft.Devices/iotHubs/privateEndpointConnections@2020-08-01'", + "label": "'Microsoft.DevTestLab/labs/policysets/policies@2018-09-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `iotHubs/privateEndpointConnections` \nAPI Version: `2020-08-01`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/policysets/policies` \nAPI Version: `2018-09-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000436", + "sortText": "00000431", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/iotHubs/privateEndpointConnections@2020-08-01'" + "newText": "'Microsoft.DevTestLab/labs/policysets/policies@2018-09-15'" } }, { - "label": "'Microsoft.Devices/provisioningServices/certificates@2017-08-21-preview'", + "label": "'Microsoft.DevTestLab/labs/schedules@2015-05-21-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices/certificates` \nAPI Version: `2017-08-21-preview`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/schedules` \nAPI Version: `2015-05-21-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000446", + "sortText": "00000436", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/provisioningServices/certificates@2017-08-21-preview'" + "newText": "'Microsoft.DevTestLab/labs/schedules@2015-05-21-preview'" } }, { - "label": "'Microsoft.Devices/provisioningServices/certificates@2017-11-15'", + "label": "'Microsoft.DevTestLab/labs/schedules@2016-05-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices/certificates` \nAPI Version: `2017-11-15`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/schedules` \nAPI Version: `2016-05-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000445", + "sortText": "00000435", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/provisioningServices/certificates@2017-11-15'" + "newText": "'Microsoft.DevTestLab/labs/schedules@2016-05-15'" } }, { - "label": "'Microsoft.Devices/provisioningServices/certificates@2018-01-22'", + "label": "'Microsoft.DevTestLab/labs/schedules@2018-09-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices/certificates` \nAPI Version: `2018-01-22`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/schedules` \nAPI Version: `2018-09-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000444", + "sortText": "00000434", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/provisioningServices/certificates@2018-01-22'" + "newText": "'Microsoft.DevTestLab/labs/schedules@2018-09-15'" } }, { - "label": "'Microsoft.Devices/provisioningServices/certificates@2020-01-01'", + "label": "'Microsoft.DevTestLab/labs/servicerunners@2016-05-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices/certificates` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/servicerunners` \nAPI Version: `2016-05-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000443", + "sortText": "00000438", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/provisioningServices/certificates@2020-01-01'" + "newText": "'Microsoft.DevTestLab/labs/servicerunners@2016-05-15'" } }, { - "label": "'Microsoft.Devices/provisioningServices/certificates@2020-03-01'", + "label": "'Microsoft.DevTestLab/labs/servicerunners@2018-09-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices/certificates` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/servicerunners` \nAPI Version: `2018-09-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000442", + "sortText": "00000437", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/provisioningServices/certificates@2020-03-01'" + "newText": "'Microsoft.DevTestLab/labs/servicerunners@2018-09-15'" } }, { - "label": "'Microsoft.Devices/provisioningServices/certificates@2020-09-01-preview'", + "label": "'Microsoft.DevTestLab/labs/users/disks@2016-05-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices/certificates` \nAPI Version: `2020-09-01-preview`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/users/disks` \nAPI Version: `2016-05-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000441", + "sortText": "0000043c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/provisioningServices/certificates@2020-09-01-preview'" + "newText": "'Microsoft.DevTestLab/labs/users/disks@2016-05-15'" } }, { - "label": "'Microsoft.Devices/provisioningServices/privateEndpointConnections@2020-03-01'", + "label": "'Microsoft.DevTestLab/labs/users/disks@2018-09-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices/privateEndpointConnections` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/users/disks` \nAPI Version: `2018-09-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000448", + "sortText": "0000043b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/provisioningServices/privateEndpointConnections@2020-03-01'" + "newText": "'Microsoft.DevTestLab/labs/users/disks@2018-09-15'" } }, { - "label": "'Microsoft.Devices/provisioningServices/privateEndpointConnections@2020-09-01-preview'", + "label": "'Microsoft.DevTestLab/labs/users/environments@2016-05-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices/privateEndpointConnections` \nAPI Version: `2020-09-01-preview`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/users/environments` \nAPI Version: `2016-05-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000447", + "sortText": "0000043e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/provisioningServices/privateEndpointConnections@2020-09-01-preview'" + "newText": "'Microsoft.DevTestLab/labs/users/environments@2016-05-15'" } }, { - "label": "'Microsoft.Devices/provisioningServices@2017-08-21-preview'", + "label": "'Microsoft.DevTestLab/labs/users/environments@2018-09-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices` \nAPI Version: `2017-08-21-preview`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/users/environments` \nAPI Version: `2018-09-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000440", + "sortText": "0000043d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/provisioningServices@2017-08-21-preview'" + "newText": "'Microsoft.DevTestLab/labs/users/environments@2018-09-15'" } }, { - "label": "'Microsoft.Devices/provisioningServices@2017-11-15'", + "label": "'Microsoft.DevTestLab/labs/users/secrets@2016-05-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices` \nAPI Version: `2017-11-15`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/users/secrets` \nAPI Version: `2016-05-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000043f", + "sortText": "00000440", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/provisioningServices@2017-11-15'" + "newText": "'Microsoft.DevTestLab/labs/users/secrets@2016-05-15'" } }, { - "label": "'Microsoft.Devices/provisioningServices@2018-01-22'", + "label": "'Microsoft.DevTestLab/labs/users/secrets@2018-09-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices` \nAPI Version: `2018-01-22`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/users/secrets` \nAPI Version: `2018-09-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000043e", + "sortText": "0000043f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/provisioningServices@2018-01-22'" + "newText": "'Microsoft.DevTestLab/labs/users/secrets@2018-09-15'" } }, { - "label": "'Microsoft.Devices/provisioningServices@2020-01-01'", + "label": "'Microsoft.DevTestLab/labs/users/servicefabrics/schedules@2018-09-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/users/servicefabrics/schedules` \nAPI Version: `2018-09-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000043d", + "sortText": "00000442", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/provisioningServices@2020-01-01'" + "newText": "'Microsoft.DevTestLab/labs/users/servicefabrics/schedules@2018-09-15'" } }, { - "label": "'Microsoft.Devices/provisioningServices@2020-03-01'", + "label": "'Microsoft.DevTestLab/labs/users/servicefabrics@2018-09-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/users/servicefabrics` \nAPI Version: `2018-09-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000043c", + "sortText": "00000441", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/provisioningServices@2020-03-01'" + "newText": "'Microsoft.DevTestLab/labs/users/servicefabrics@2018-09-15'" } }, { - "label": "'Microsoft.Devices/provisioningServices@2020-09-01-preview'", + "label": "'Microsoft.DevTestLab/labs/users@2016-05-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices` \nAPI Version: `2020-09-01-preview`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/users` \nAPI Version: `2016-05-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000043b", + "sortText": "0000043a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Devices/provisioningServices@2020-09-01-preview'" + "newText": "'Microsoft.DevTestLab/labs/users@2016-05-15'" } }, { - "label": "'Microsoft.DigitalTwins/digitalTwinsInstances/endpoints@2020-03-01-preview'", + "label": "'Microsoft.DevTestLab/labs/users@2018-09-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DigitalTwins` \nType: `digitalTwinsInstances/endpoints` \nAPI Version: `2020-03-01-preview`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/users` \nAPI Version: `2018-09-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000047a", + "sortText": "00000439", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DigitalTwins/digitalTwinsInstances/endpoints@2020-03-01-preview'" + "newText": "'Microsoft.DevTestLab/labs/users@2018-09-15'" } }, { - "label": "'Microsoft.DigitalTwins/digitalTwinsInstances/endpoints@2020-10-31'", + "label": "'Microsoft.DevTestLab/labs/virtualmachines/schedules@2016-05-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DigitalTwins` \nType: `digitalTwinsInstances/endpoints` \nAPI Version: `2020-10-31`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/virtualmachines/schedules` \nAPI Version: `2016-05-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000479", + "sortText": "00000447", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DigitalTwins/digitalTwinsInstances/endpoints@2020-10-31'" + "newText": "'Microsoft.DevTestLab/labs/virtualmachines/schedules@2016-05-15'" } }, { - "label": "'Microsoft.DigitalTwins/digitalTwinsInstances@2020-03-01-preview'", + "label": "'Microsoft.DevTestLab/labs/virtualmachines/schedules@2018-09-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DigitalTwins` \nType: `digitalTwinsInstances` \nAPI Version: `2020-03-01-preview`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/virtualmachines/schedules` \nAPI Version: `2018-09-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000478", + "sortText": "00000446", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DigitalTwins/digitalTwinsInstances@2020-03-01-preview'" + "newText": "'Microsoft.DevTestLab/labs/virtualmachines/schedules@2018-09-15'" } }, { - "label": "'Microsoft.DigitalTwins/digitalTwinsInstances@2020-10-31'", + "label": "'Microsoft.DevTestLab/labs/virtualmachines@2015-05-21-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DigitalTwins` \nType: `digitalTwinsInstances` \nAPI Version: `2020-10-31`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/virtualmachines` \nAPI Version: `2015-05-21-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000477", + "sortText": "00000445", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DigitalTwins/digitalTwinsInstances@2020-10-31'" + "newText": "'Microsoft.DevTestLab/labs/virtualmachines@2015-05-21-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings@2015-04-01'", + "label": "'Microsoft.DevTestLab/labs/virtualmachines@2016-05-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/collections/settings` \nAPI Version: `2015-04-01`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/virtualmachines` \nAPI Version: `2016-05-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000493", + "sortText": "00000444", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings@2015-04-01'" + "newText": "'Microsoft.DevTestLab/labs/virtualmachines@2016-05-15'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings@2015-04-08'", + "label": "'Microsoft.DevTestLab/labs/virtualmachines@2018-09-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/collections/settings` \nAPI Version: `2015-04-08`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/virtualmachines` \nAPI Version: `2018-09-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000492", + "sortText": "00000443", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings@2015-04-08'" + "newText": "'Microsoft.DevTestLab/labs/virtualmachines@2018-09-15'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings@2015-11-06'", + "label": "'Microsoft.DevTestLab/labs/virtualnetworks@2015-05-21-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/collections/settings` \nAPI Version: `2015-11-06`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/virtualnetworks` \nAPI Version: `2015-05-21-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000491", + "sortText": "0000044a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings@2015-11-06'" + "newText": "'Microsoft.DevTestLab/labs/virtualnetworks@2015-05-21-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings@2016-03-19'", + "label": "'Microsoft.DevTestLab/labs/virtualnetworks@2016-05-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/collections/settings` \nAPI Version: `2016-03-19`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/virtualnetworks` \nAPI Version: `2016-05-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000490", + "sortText": "00000449", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings@2016-03-19'" + "newText": "'Microsoft.DevTestLab/labs/virtualnetworks@2016-05-15'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings@2016-03-31'", + "label": "'Microsoft.DevTestLab/labs/virtualnetworks@2018-09-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/collections/settings` \nAPI Version: `2016-03-31`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs/virtualnetworks` \nAPI Version: `2018-09-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000048f", + "sortText": "00000448", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings@2016-03-31'" + "newText": "'Microsoft.DevTestLab/labs/virtualnetworks@2018-09-15'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections@2015-04-01'", + "label": "'Microsoft.DevTestLab/labs@2015-05-21-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/collections` \nAPI Version: `2015-04-01`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs` \nAPI Version: `2015-05-21-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000048e", + "sortText": "00000423", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections@2015-04-01'" + "newText": "'Microsoft.DevTestLab/labs@2015-05-21-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections@2015-04-08'", + "label": "'Microsoft.DevTestLab/labs@2016-05-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/collections` \nAPI Version: `2015-04-08`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs` \nAPI Version: `2016-05-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000048d", + "sortText": "00000422", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections@2015-04-08'" + "newText": "'Microsoft.DevTestLab/labs@2016-05-15'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections@2015-11-06'", + "label": "'Microsoft.DevTestLab/labs@2018-09-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/collections` \nAPI Version: `2015-11-06`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `labs` \nAPI Version: `2018-09-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000048c", + "sortText": "00000421", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections@2015-11-06'" + "newText": "'Microsoft.DevTestLab/labs@2018-09-15'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections@2016-03-19'", + "label": "'Microsoft.DevTestLab/schedules@2016-05-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/collections` \nAPI Version: `2016-03-19`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `schedules` \nAPI Version: `2016-05-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000048b", + "sortText": "0000044c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections@2016-03-19'" + "newText": "'Microsoft.DevTestLab/schedules@2016-05-15'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections@2016-03-31'", + "label": "'Microsoft.DevTestLab/schedules@2018-09-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/collections` \nAPI Version: `2016-03-31`" + "value": "Namespace: `Microsoft.DevTestLab` \nType: `schedules` \nAPI Version: `2018-09-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000048a", + "sortText": "0000044b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections@2016-03-31'" + "newText": "'Microsoft.DevTestLab/schedules@2018-09-15'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers/settings@2015-04-01'", + "label": "'Microsoft.Devices/IotHubs/certificates@2017-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/containers/settings` \nAPI Version: `2015-04-01`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/certificates` \nAPI Version: `2017-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000049d", + "sortText": "00000407", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers/settings@2015-04-01'" + "newText": "'Microsoft.Devices/IotHubs/certificates@2017-07-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers/settings@2015-04-08'", + "label": "'Microsoft.Devices/IotHubs/certificates@2018-01-22'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/containers/settings` \nAPI Version: `2015-04-08`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/certificates` \nAPI Version: `2018-01-22`" }, "deprecated": false, "preselect": false, - "sortText": "0000049c", + "sortText": "00000406", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers/settings@2015-04-08'" + "newText": "'Microsoft.Devices/IotHubs/certificates@2018-01-22'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers/settings@2015-11-06'", + "label": "'Microsoft.Devices/IotHubs/certificates@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/containers/settings` \nAPI Version: `2015-11-06`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/certificates` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000049b", + "sortText": "00000405", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers/settings@2015-11-06'" + "newText": "'Microsoft.Devices/IotHubs/certificates@2018-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers/settings@2016-03-19'", + "label": "'Microsoft.Devices/IotHubs/certificates@2018-12-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/containers/settings` \nAPI Version: `2016-03-19`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/certificates` \nAPI Version: `2018-12-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000049a", + "sortText": "00000404", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers/settings@2016-03-19'" + "newText": "'Microsoft.Devices/IotHubs/certificates@2018-12-01-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers/settings@2016-03-31'", + "label": "'Microsoft.Devices/IotHubs/certificates@2019-03-22'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/containers/settings` \nAPI Version: `2016-03-31`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/certificates` \nAPI Version: `2019-03-22`" }, "deprecated": false, "preselect": false, - "sortText": "00000499", + "sortText": "00000403", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers/settings@2016-03-31'" + "newText": "'Microsoft.Devices/IotHubs/certificates@2019-03-22'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers@2015-04-01'", + "label": "'Microsoft.Devices/IotHubs/certificates@2019-03-22-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/containers` \nAPI Version: `2015-04-01`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/certificates` \nAPI Version: `2019-03-22-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000498", + "sortText": "00000402", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers@2015-04-01'" + "newText": "'Microsoft.Devices/IotHubs/certificates@2019-03-22-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers@2015-04-08'", + "label": "'Microsoft.Devices/IotHubs/certificates@2019-07-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/containers` \nAPI Version: `2015-04-08`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/certificates` \nAPI Version: `2019-07-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000497", + "sortText": "00000401", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers@2015-04-08'" + "newText": "'Microsoft.Devices/IotHubs/certificates@2019-07-01-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers@2015-11-06'", + "label": "'Microsoft.Devices/IotHubs/certificates@2019-11-04'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/containers` \nAPI Version: `2015-11-06`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/certificates` \nAPI Version: `2019-11-04`" }, "deprecated": false, "preselect": false, - "sortText": "00000496", + "sortText": "00000400", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers@2015-11-06'" + "newText": "'Microsoft.Devices/IotHubs/certificates@2019-11-04'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers@2016-03-19'", + "label": "'Microsoft.Devices/IotHubs/certificates@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/containers` \nAPI Version: `2016-03-19`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/certificates` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000495", + "sortText": "000003ff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers@2016-03-19'" + "newText": "'Microsoft.Devices/IotHubs/certificates@2020-03-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers@2016-03-31'", + "label": "'Microsoft.Devices/IotHubs/certificates@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/containers` \nAPI Version: `2016-03-31`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/certificates` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000494", + "sortText": "000003fe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers@2016-03-31'" + "newText": "'Microsoft.Devices/IotHubs/certificates@2020-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs/settings@2015-04-01'", + "label": "'Microsoft.Devices/IotHubs/certificates@2020-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/graphs/settings` \nAPI Version: `2015-04-01`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/certificates` \nAPI Version: `2020-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "000004a7", + "sortText": "000003fd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs/settings@2015-04-01'" + "newText": "'Microsoft.Devices/IotHubs/certificates@2020-06-15'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs/settings@2015-04-08'", + "label": "'Microsoft.Devices/IotHubs/certificates@2020-07-10-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/graphs/settings` \nAPI Version: `2015-04-08`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/certificates` \nAPI Version: `2020-07-10-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000004a6", + "sortText": "000003fc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs/settings@2015-04-08'" + "newText": "'Microsoft.Devices/IotHubs/certificates@2020-07-10-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs/settings@2015-11-06'", + "label": "'Microsoft.Devices/IotHubs/certificates@2020-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/graphs/settings` \nAPI Version: `2015-11-06`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/certificates` \nAPI Version: `2020-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000004a5", + "sortText": "000003fb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs/settings@2015-11-06'" + "newText": "'Microsoft.Devices/IotHubs/certificates@2020-08-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs/settings@2016-03-19'", + "label": "'Microsoft.Devices/IotHubs/eventHubEndpoints/ConsumerGroups@2020-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/graphs/settings` \nAPI Version: `2016-03-19`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/eventHubEndpoints/ConsumerGroups` \nAPI Version: `2020-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "000004a4", + "sortText": "0000040a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs/settings@2016-03-19'" + "newText": "'Microsoft.Devices/IotHubs/eventHubEndpoints/ConsumerGroups@2020-06-15'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs/settings@2016-03-31'", + "label": "'Microsoft.Devices/IotHubs/eventHubEndpoints/ConsumerGroups@2020-07-10-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/graphs/settings` \nAPI Version: `2016-03-31`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/eventHubEndpoints/ConsumerGroups` \nAPI Version: `2020-07-10-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000004a3", + "sortText": "00000409", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs/settings@2016-03-31'" + "newText": "'Microsoft.Devices/IotHubs/eventHubEndpoints/ConsumerGroups@2020-07-10-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs@2015-04-01'", + "label": "'Microsoft.Devices/IotHubs/eventHubEndpoints/ConsumerGroups@2020-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/graphs` \nAPI Version: `2015-04-01`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs/eventHubEndpoints/ConsumerGroups` \nAPI Version: `2020-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000004a2", + "sortText": "00000408", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs@2015-04-01'" + "newText": "'Microsoft.Devices/IotHubs/eventHubEndpoints/ConsumerGroups@2020-08-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs@2015-04-08'", + "label": "'Microsoft.Devices/IotHubs@2016-02-03'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/graphs` \nAPI Version: `2015-04-08`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2016-02-03`" }, "deprecated": false, "preselect": false, - "sortText": "000004a1", + "sortText": "000003fa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs@2015-04-08'" + "newText": "'Microsoft.Devices/IotHubs@2016-02-03'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs@2015-11-06'", + "label": "'Microsoft.Devices/IotHubs@2017-01-19'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/graphs` \nAPI Version: `2015-11-06`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2017-01-19`" }, "deprecated": false, "preselect": false, - "sortText": "000004a0", + "sortText": "000003f9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs@2015-11-06'" + "newText": "'Microsoft.Devices/IotHubs@2017-01-19'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs@2016-03-19'", + "label": "'Microsoft.Devices/IotHubs@2017-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/graphs` \nAPI Version: `2016-03-19`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2017-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000049f", + "sortText": "000003f8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs@2016-03-19'" + "newText": "'Microsoft.Devices/IotHubs@2017-07-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs@2016-03-31'", + "label": "'Microsoft.Devices/IotHubs@2018-01-22'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/graphs` \nAPI Version: `2016-03-31`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2018-01-22`" }, "deprecated": false, "preselect": false, - "sortText": "0000049e", + "sortText": "000003f7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs@2016-03-31'" + "newText": "'Microsoft.Devices/IotHubs@2018-01-22'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/settings@2015-04-01'", + "label": "'Microsoft.Devices/IotHubs@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/settings` \nAPI Version: `2015-04-01`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000004ac", + "sortText": "000003f6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/settings@2015-04-01'" + "newText": "'Microsoft.Devices/IotHubs@2018-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/settings@2015-04-08'", + "label": "'Microsoft.Devices/IotHubs@2018-12-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/settings` \nAPI Version: `2015-04-08`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2018-12-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000004ab", + "sortText": "000003f5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/settings@2015-04-08'" + "newText": "'Microsoft.Devices/IotHubs@2018-12-01-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/settings@2015-11-06'", + "label": "'Microsoft.Devices/IotHubs@2019-03-22'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/settings` \nAPI Version: `2015-11-06`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2019-03-22`" }, "deprecated": false, "preselect": false, - "sortText": "000004aa", + "sortText": "000003f4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/settings@2015-11-06'" + "newText": "'Microsoft.Devices/IotHubs@2019-03-22'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/settings@2016-03-19'", + "label": "'Microsoft.Devices/IotHubs@2019-03-22-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/settings` \nAPI Version: `2016-03-19`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2019-03-22-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000004a9", + "sortText": "000003f3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/settings@2016-03-19'" + "newText": "'Microsoft.Devices/IotHubs@2019-03-22-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/settings@2016-03-31'", + "label": "'Microsoft.Devices/IotHubs@2019-07-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/settings` \nAPI Version: `2016-03-31`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2019-07-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000004a8", + "sortText": "000003f2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/settings@2016-03-31'" + "newText": "'Microsoft.Devices/IotHubs@2019-07-01-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases@2015-04-01'", + "label": "'Microsoft.Devices/IotHubs@2019-11-04'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases` \nAPI Version: `2015-04-01`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2019-11-04`" }, "deprecated": false, "preselect": false, - "sortText": "00000489", + "sortText": "000003f1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases@2015-04-01'" + "newText": "'Microsoft.Devices/IotHubs@2019-11-04'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases@2015-04-08'", + "label": "'Microsoft.Devices/IotHubs@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases` \nAPI Version: `2015-04-08`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000488", + "sortText": "000003f0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases@2015-04-08'" + "newText": "'Microsoft.Devices/IotHubs@2020-03-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases@2015-11-06'", + "label": "'Microsoft.Devices/IotHubs@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases` \nAPI Version: `2015-11-06`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000487", + "sortText": "000003ef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases@2015-11-06'" + "newText": "'Microsoft.Devices/IotHubs@2020-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases@2016-03-19'", + "label": "'Microsoft.Devices/IotHubs@2020-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases` \nAPI Version: `2016-03-19`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2020-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000486", + "sortText": "000003ee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases@2016-03-19'" + "newText": "'Microsoft.Devices/IotHubs@2020-06-15'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases@2016-03-31'", + "label": "'Microsoft.Devices/IotHubs@2020-07-10-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases` \nAPI Version: `2016-03-31`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2020-07-10-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000485", + "sortText": "000003ed", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases@2016-03-31'" + "newText": "'Microsoft.Devices/IotHubs@2020-07-10-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/settings@2015-04-01'", + "label": "'Microsoft.Devices/IotHubs@2020-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/settings` \nAPI Version: `2015-04-01`" + "value": "Namespace: `Microsoft.Devices` \nType: `IotHubs` \nAPI Version: `2020-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000004b6", + "sortText": "000003ec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/settings@2015-04-01'" + "newText": "'Microsoft.Devices/IotHubs@2020-08-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/settings@2015-04-08'", + "label": "'Microsoft.Devices/iotHubs/privateEndpointConnections@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/settings` \nAPI Version: `2015-04-08`" + "value": "Namespace: `Microsoft.Devices` \nType: `iotHubs/privateEndpointConnections` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000004b5", + "sortText": "0000040f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/settings@2015-04-08'" + "newText": "'Microsoft.Devices/iotHubs/privateEndpointConnections@2020-03-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/settings@2015-11-06'", + "label": "'Microsoft.Devices/iotHubs/privateEndpointConnections@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/settings` \nAPI Version: `2015-11-06`" + "value": "Namespace: `Microsoft.Devices` \nType: `iotHubs/privateEndpointConnections` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000004b4", + "sortText": "0000040e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/settings@2015-11-06'" + "newText": "'Microsoft.Devices/iotHubs/privateEndpointConnections@2020-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/settings@2016-03-19'", + "label": "'Microsoft.Devices/iotHubs/privateEndpointConnections@2020-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/settings` \nAPI Version: `2016-03-19`" + "value": "Namespace: `Microsoft.Devices` \nType: `iotHubs/privateEndpointConnections` \nAPI Version: `2020-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "000004b3", + "sortText": "0000040d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/settings@2016-03-19'" + "newText": "'Microsoft.Devices/iotHubs/privateEndpointConnections@2020-06-15'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/settings@2016-03-31'", + "label": "'Microsoft.Devices/iotHubs/privateEndpointConnections@2020-07-10-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/settings` \nAPI Version: `2016-03-31`" + "value": "Namespace: `Microsoft.Devices` \nType: `iotHubs/privateEndpointConnections` \nAPI Version: `2020-07-10-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000004b2", + "sortText": "0000040c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/settings@2016-03-31'" + "newText": "'Microsoft.Devices/iotHubs/privateEndpointConnections@2020-07-10-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings@2015-04-01'", + "label": "'Microsoft.Devices/iotHubs/privateEndpointConnections@2020-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/tables/settings` \nAPI Version: `2015-04-01`" + "value": "Namespace: `Microsoft.Devices` \nType: `iotHubs/privateEndpointConnections` \nAPI Version: `2020-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000004c0", + "sortText": "0000040b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings@2015-04-01'" + "newText": "'Microsoft.Devices/iotHubs/privateEndpointConnections@2020-08-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings@2015-04-08'", + "label": "'Microsoft.Devices/provisioningServices/certificates@2017-08-21-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/tables/settings` \nAPI Version: `2015-04-08`" + "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices/certificates` \nAPI Version: `2017-08-21-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000004bf", + "sortText": "0000041b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings@2015-04-08'" + "newText": "'Microsoft.Devices/provisioningServices/certificates@2017-08-21-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings@2015-11-06'", + "label": "'Microsoft.Devices/provisioningServices/certificates@2017-11-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/tables/settings` \nAPI Version: `2015-11-06`" + "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices/certificates` \nAPI Version: `2017-11-15`" }, "deprecated": false, "preselect": false, - "sortText": "000004be", + "sortText": "0000041a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings@2015-11-06'" + "newText": "'Microsoft.Devices/provisioningServices/certificates@2017-11-15'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings@2016-03-19'", + "label": "'Microsoft.Devices/provisioningServices/certificates@2018-01-22'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/tables/settings` \nAPI Version: `2016-03-19`" + "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices/certificates` \nAPI Version: `2018-01-22`" }, "deprecated": false, "preselect": false, - "sortText": "000004bd", + "sortText": "00000419", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings@2016-03-19'" + "newText": "'Microsoft.Devices/provisioningServices/certificates@2018-01-22'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings@2016-03-31'", + "label": "'Microsoft.Devices/provisioningServices/certificates@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/tables/settings` \nAPI Version: `2016-03-31`" + "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices/certificates` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "000004bc", + "sortText": "00000418", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings@2016-03-31'" + "newText": "'Microsoft.Devices/provisioningServices/certificates@2020-01-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables@2015-04-01'", + "label": "'Microsoft.Devices/provisioningServices/certificates@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/tables` \nAPI Version: `2015-04-01`" + "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices/certificates` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000004bb", + "sortText": "00000417", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables@2015-04-01'" + "newText": "'Microsoft.Devices/provisioningServices/certificates@2020-03-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables@2015-04-08'", + "label": "'Microsoft.Devices/provisioningServices/certificates@2020-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/tables` \nAPI Version: `2015-04-08`" + "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices/certificates` \nAPI Version: `2020-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000004ba", + "sortText": "00000416", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables@2015-04-08'" + "newText": "'Microsoft.Devices/provisioningServices/certificates@2020-09-01-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables@2015-11-06'", + "label": "'Microsoft.Devices/provisioningServices/privateEndpointConnections@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/tables` \nAPI Version: `2015-11-06`" + "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices/privateEndpointConnections` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000004b9", + "sortText": "0000041d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables@2015-11-06'" + "newText": "'Microsoft.Devices/provisioningServices/privateEndpointConnections@2020-03-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables@2016-03-19'", + "label": "'Microsoft.Devices/provisioningServices/privateEndpointConnections@2020-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/tables` \nAPI Version: `2016-03-19`" + "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices/privateEndpointConnections` \nAPI Version: `2020-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000004b8", + "sortText": "0000041c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables@2016-03-19'" + "newText": "'Microsoft.Devices/provisioningServices/privateEndpointConnections@2020-09-01-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables@2016-03-31'", + "label": "'Microsoft.Devices/provisioningServices@2017-08-21-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/tables` \nAPI Version: `2016-03-31`" + "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices` \nAPI Version: `2017-08-21-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000004b7", + "sortText": "00000415", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables@2016-03-31'" + "newText": "'Microsoft.Devices/provisioningServices@2017-08-21-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces@2015-04-01'", + "label": "'Microsoft.Devices/provisioningServices@2017-11-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces` \nAPI Version: `2015-04-01`" + "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices` \nAPI Version: `2017-11-15`" }, "deprecated": false, "preselect": false, - "sortText": "000004b1", + "sortText": "00000414", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces@2015-04-01'" + "newText": "'Microsoft.Devices/provisioningServices@2017-11-15'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces@2015-04-08'", + "label": "'Microsoft.Devices/provisioningServices@2018-01-22'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces` \nAPI Version: `2015-04-08`" + "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices` \nAPI Version: `2018-01-22`" }, "deprecated": false, "preselect": false, - "sortText": "000004b0", + "sortText": "00000413", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces@2015-04-08'" + "newText": "'Microsoft.Devices/provisioningServices@2018-01-22'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces@2015-11-06'", + "label": "'Microsoft.Devices/provisioningServices@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces` \nAPI Version: `2015-11-06`" + "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "000004af", + "sortText": "00000412", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces@2015-11-06'" + "newText": "'Microsoft.Devices/provisioningServices@2020-01-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces@2016-03-19'", + "label": "'Microsoft.Devices/provisioningServices@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces` \nAPI Version: `2016-03-19`" + "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000004ae", + "sortText": "00000411", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces@2016-03-19'" + "newText": "'Microsoft.Devices/provisioningServices@2020-03-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces@2016-03-31'", + "label": "'Microsoft.Devices/provisioningServices@2020-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces` \nAPI Version: `2016-03-31`" + "value": "Namespace: `Microsoft.Devices` \nType: `provisioningServices` \nAPI Version: `2020-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000004ad", + "sortText": "00000410", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces@2016-03-31'" + "newText": "'Microsoft.Devices/provisioningServices@2020-09-01-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/tables/settings@2015-04-01'", + "label": "'Microsoft.DigitalTwins/digitalTwinsInstances/endpoints@2020-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/tables/settings` \nAPI Version: `2015-04-01`" + "value": "Namespace: `Microsoft.DigitalTwins` \nType: `digitalTwinsInstances/endpoints` \nAPI Version: `2020-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000004ca", + "sortText": "00000452", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/tables/settings@2015-04-01'" + "newText": "'Microsoft.DigitalTwins/digitalTwinsInstances/endpoints@2020-03-01-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/tables/settings@2015-04-08'", + "label": "'Microsoft.DigitalTwins/digitalTwinsInstances/endpoints@2020-10-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/tables/settings` \nAPI Version: `2015-04-08`" + "value": "Namespace: `Microsoft.DigitalTwins` \nType: `digitalTwinsInstances/endpoints` \nAPI Version: `2020-10-31`" }, "deprecated": false, "preselect": false, - "sortText": "000004c9", + "sortText": "00000451", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/tables/settings@2015-04-08'" + "newText": "'Microsoft.DigitalTwins/digitalTwinsInstances/endpoints@2020-10-31'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/tables/settings@2015-11-06'", + "label": "'Microsoft.DigitalTwins/digitalTwinsInstances/endpoints@2020-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/tables/settings` \nAPI Version: `2015-11-06`" + "value": "Namespace: `Microsoft.DigitalTwins` \nType: `digitalTwinsInstances/endpoints` \nAPI Version: `2020-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000004c8", + "sortText": "00000450", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/tables/settings@2015-11-06'" + "newText": "'Microsoft.DigitalTwins/digitalTwinsInstances/endpoints@2020-12-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/tables/settings@2016-03-19'", + "label": "'Microsoft.DigitalTwins/digitalTwinsInstances/privateEndpointConnections@2020-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/tables/settings` \nAPI Version: `2016-03-19`" + "value": "Namespace: `Microsoft.DigitalTwins` \nType: `digitalTwinsInstances/privateEndpointConnections` \nAPI Version: `2020-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000004c7", + "sortText": "00000453", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/tables/settings@2016-03-19'" + "newText": "'Microsoft.DigitalTwins/digitalTwinsInstances/privateEndpointConnections@2020-12-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/tables/settings@2016-03-31'", + "label": "'Microsoft.DigitalTwins/digitalTwinsInstances@2020-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/tables/settings` \nAPI Version: `2016-03-31`" + "value": "Namespace: `Microsoft.DigitalTwins` \nType: `digitalTwinsInstances` \nAPI Version: `2020-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000004c6", + "sortText": "0000044f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/tables/settings@2016-03-31'" + "newText": "'Microsoft.DigitalTwins/digitalTwinsInstances@2020-03-01-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/tables@2015-04-01'", + "label": "'Microsoft.DigitalTwins/digitalTwinsInstances@2020-10-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/tables` \nAPI Version: `2015-04-01`" + "value": "Namespace: `Microsoft.DigitalTwins` \nType: `digitalTwinsInstances` \nAPI Version: `2020-10-31`" }, "deprecated": false, "preselect": false, - "sortText": "000004c5", + "sortText": "0000044e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/tables@2015-04-01'" + "newText": "'Microsoft.DigitalTwins/digitalTwinsInstances@2020-10-31'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/tables@2015-04-08'", + "label": "'Microsoft.DigitalTwins/digitalTwinsInstances@2020-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/tables` \nAPI Version: `2015-04-08`" + "value": "Namespace: `Microsoft.DigitalTwins` \nType: `digitalTwinsInstances` \nAPI Version: `2020-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000004c4", + "sortText": "0000044d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/tables@2015-04-08'" + "newText": "'Microsoft.DigitalTwins/digitalTwinsInstances@2020-12-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/tables@2015-11-06'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings@2015-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/tables` \nAPI Version: `2015-11-06`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/collections/settings` \nAPI Version: `2015-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000004c3", + "sortText": "0000046c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/tables@2015-11-06'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings@2015-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/tables@2016-03-19'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings@2015-04-08'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/tables` \nAPI Version: `2016-03-19`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/collections/settings` \nAPI Version: `2015-04-08`" }, "deprecated": false, "preselect": false, - "sortText": "000004c2", + "sortText": "0000046b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/tables@2016-03-19'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings@2015-04-08'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/apis/tables@2016-03-31'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings@2015-11-06'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/tables` \nAPI Version: `2016-03-31`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/collections/settings` \nAPI Version: `2015-11-06`" }, "deprecated": false, "preselect": false, - "sortText": "000004c1", + "sortText": "0000046a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/tables@2016-03-31'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings@2015-11-06'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings@2019-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings@2016-03-19'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/tables/throughputSettings` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/collections/settings` \nAPI Version: `2016-03-19`" }, "deprecated": false, "preselect": false, - "sortText": "000004d9", + "sortText": "00000469", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings@2019-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings@2016-03-19'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings@2019-12-12'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings@2016-03-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/tables/throughputSettings` \nAPI Version: `2019-12-12`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/collections/settings` \nAPI Version: `2016-03-31`" }, "deprecated": false, "preselect": false, - "sortText": "000004d8", + "sortText": "00000468", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings@2019-12-12'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections/settings@2016-03-31'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings@2020-03-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections@2015-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/tables/throughputSettings` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/collections` \nAPI Version: `2015-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000004d7", + "sortText": "00000467", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings@2020-03-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections@2015-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings@2020-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections@2015-04-08'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/tables/throughputSettings` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/collections` \nAPI Version: `2015-04-08`" }, "deprecated": false, "preselect": false, - "sortText": "000004d6", + "sortText": "00000466", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings@2020-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections@2015-04-08'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings@2020-06-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections@2015-11-06'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/tables/throughputSettings` \nAPI Version: `2020-06-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/collections` \nAPI Version: `2015-11-06`" }, "deprecated": false, "preselect": false, - "sortText": "000004d5", + "sortText": "00000465", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings@2020-06-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections@2015-11-06'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables@2019-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections@2016-03-19'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/tables` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/collections` \nAPI Version: `2016-03-19`" }, "deprecated": false, "preselect": false, - "sortText": "000004d4", + "sortText": "00000464", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables@2019-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections@2016-03-19'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables@2019-12-12'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections@2016-03-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/tables` \nAPI Version: `2019-12-12`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/collections` \nAPI Version: `2016-03-31`" }, "deprecated": false, "preselect": false, - "sortText": "000004d3", + "sortText": "00000463", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables@2019-12-12'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/collections@2016-03-31'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables@2020-03-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers/settings@2015-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/tables` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/containers/settings` \nAPI Version: `2015-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000004d2", + "sortText": "00000476", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables@2020-03-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers/settings@2015-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables@2020-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers/settings@2015-04-08'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/tables` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/containers/settings` \nAPI Version: `2015-04-08`" }, "deprecated": false, "preselect": false, - "sortText": "000004d1", + "sortText": "00000475", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables@2020-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers/settings@2015-04-08'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables@2020-06-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers/settings@2015-11-06'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/tables` \nAPI Version: `2020-06-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/containers/settings` \nAPI Version: `2015-11-06`" }, "deprecated": false, "preselect": false, - "sortText": "000004d0", + "sortText": "00000474", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables@2020-06-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers/settings@2015-11-06'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings@2019-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers/settings@2016-03-19'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/throughputSettings` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/containers/settings` \nAPI Version: `2016-03-19`" }, "deprecated": false, "preselect": false, - "sortText": "000004de", + "sortText": "00000473", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings@2019-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers/settings@2016-03-19'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings@2019-12-12'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers/settings@2016-03-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/throughputSettings` \nAPI Version: `2019-12-12`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/containers/settings` \nAPI Version: `2016-03-31`" }, "deprecated": false, "preselect": false, - "sortText": "000004dd", + "sortText": "00000472", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings@2019-12-12'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers/settings@2016-03-31'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings@2020-03-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers@2015-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/throughputSettings` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/containers` \nAPI Version: `2015-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000004dc", + "sortText": "00000471", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings@2020-03-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers@2015-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings@2020-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers@2015-04-08'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/throughputSettings` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/containers` \nAPI Version: `2015-04-08`" }, "deprecated": false, "preselect": false, - "sortText": "000004db", + "sortText": "00000470", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings@2020-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers@2015-04-08'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings@2020-06-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers@2015-11-06'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/throughputSettings` \nAPI Version: `2020-06-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/containers` \nAPI Version: `2015-11-06`" }, "deprecated": false, "preselect": false, - "sortText": "000004da", + "sortText": "0000046f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings@2020-06-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers@2015-11-06'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces@2019-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers@2016-03-19'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/containers` \nAPI Version: `2016-03-19`" }, "deprecated": false, "preselect": false, - "sortText": "000004cf", + "sortText": "0000046e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces@2019-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers@2016-03-19'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces@2019-12-12'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers@2016-03-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces` \nAPI Version: `2019-12-12`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/containers` \nAPI Version: `2016-03-31`" }, "deprecated": false, "preselect": false, - "sortText": "000004ce", + "sortText": "0000046d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces@2019-12-12'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/containers@2016-03-31'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces@2020-03-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs/settings@2015-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/graphs/settings` \nAPI Version: `2015-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000004cd", + "sortText": "00000480", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces@2020-03-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs/settings@2015-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces@2020-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs/settings@2015-04-08'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/graphs/settings` \nAPI Version: `2015-04-08`" }, "deprecated": false, "preselect": false, - "sortText": "000004cc", + "sortText": "0000047f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces@2020-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs/settings@2015-04-08'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces@2020-06-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs/settings@2015-11-06'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces` \nAPI Version: `2020-06-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/graphs/settings` \nAPI Version: `2015-11-06`" }, "deprecated": false, "preselect": false, - "sortText": "000004cb", + "sortText": "0000047e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces@2020-06-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs/settings@2015-11-06'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings@2019-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs/settings@2016-03-19'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/graphs/throughputSettings` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/graphs/settings` \nAPI Version: `2016-03-19`" }, "deprecated": false, "preselect": false, - "sortText": "000004ed", + "sortText": "0000047d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings@2019-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs/settings@2016-03-19'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings@2019-12-12'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs/settings@2016-03-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/graphs/throughputSettings` \nAPI Version: `2019-12-12`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/graphs/settings` \nAPI Version: `2016-03-31`" }, "deprecated": false, "preselect": false, - "sortText": "000004ec", + "sortText": "0000047c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings@2019-12-12'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs/settings@2016-03-31'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings@2020-03-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs@2015-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/graphs/throughputSettings` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/graphs` \nAPI Version: `2015-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000004eb", + "sortText": "0000047b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings@2020-03-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs@2015-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings@2020-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs@2015-04-08'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/graphs/throughputSettings` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/graphs` \nAPI Version: `2015-04-08`" }, "deprecated": false, "preselect": false, - "sortText": "000004ea", + "sortText": "0000047a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings@2020-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs@2015-04-08'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings@2020-06-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs@2015-11-06'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/graphs/throughputSettings` \nAPI Version: `2020-06-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/graphs` \nAPI Version: `2015-11-06`" }, "deprecated": false, "preselect": false, - "sortText": "000004e9", + "sortText": "00000479", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings@2020-06-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs@2015-11-06'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs@2019-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs@2016-03-19'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/graphs` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/graphs` \nAPI Version: `2016-03-19`" }, "deprecated": false, "preselect": false, - "sortText": "000004e8", + "sortText": "00000478", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs@2019-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs@2016-03-19'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs@2019-12-12'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs@2016-03-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/graphs` \nAPI Version: `2019-12-12`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/graphs` \nAPI Version: `2016-03-31`" }, "deprecated": false, "preselect": false, - "sortText": "000004e7", + "sortText": "00000477", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs@2019-12-12'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/graphs@2016-03-31'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs@2020-03-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/settings@2015-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/graphs` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/settings` \nAPI Version: `2015-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000004e6", + "sortText": "00000485", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs@2020-03-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/settings@2015-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs@2020-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/settings@2015-04-08'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/graphs` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/settings` \nAPI Version: `2015-04-08`" }, "deprecated": false, "preselect": false, - "sortText": "000004e5", + "sortText": "00000484", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs@2020-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/settings@2015-04-08'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs@2020-06-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/settings@2015-11-06'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/graphs` \nAPI Version: `2020-06-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/settings` \nAPI Version: `2015-11-06`" }, "deprecated": false, "preselect": false, - "sortText": "000004e4", + "sortText": "00000483", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs@2020-06-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/settings@2015-11-06'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings@2019-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/settings@2016-03-19'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/throughputSettings` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/settings` \nAPI Version: `2016-03-19`" }, "deprecated": false, "preselect": false, - "sortText": "000004f2", + "sortText": "00000482", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings@2019-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/settings@2016-03-19'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings@2019-12-12'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/settings@2016-03-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/throughputSettings` \nAPI Version: `2019-12-12`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases/settings` \nAPI Version: `2016-03-31`" }, "deprecated": false, "preselect": false, - "sortText": "000004f1", + "sortText": "00000481", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings@2019-12-12'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases/settings@2016-03-31'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings@2020-03-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases@2015-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/throughputSettings` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases` \nAPI Version: `2015-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000004f0", + "sortText": "00000462", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings@2020-03-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases@2015-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings@2020-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases@2015-04-08'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/throughputSettings` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases` \nAPI Version: `2015-04-08`" }, "deprecated": false, "preselect": false, - "sortText": "000004ef", + "sortText": "00000461", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings@2020-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases@2015-04-08'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings@2020-06-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases@2015-11-06'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/throughputSettings` \nAPI Version: `2020-06-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases` \nAPI Version: `2015-11-06`" }, "deprecated": false, "preselect": false, - "sortText": "000004ee", + "sortText": "00000460", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings@2020-06-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases@2015-11-06'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases@2019-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases@2016-03-19'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases` \nAPI Version: `2016-03-19`" }, "deprecated": false, "preselect": false, - "sortText": "000004e3", + "sortText": "0000045f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases@2019-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases@2016-03-19'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases@2019-12-12'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/databases@2016-03-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases` \nAPI Version: `2019-12-12`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/databases` \nAPI Version: `2016-03-31`" }, "deprecated": false, "preselect": false, - "sortText": "000004e2", + "sortText": "0000045e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases@2019-12-12'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/databases@2016-03-31'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases@2020-03-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/settings@2015-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/settings` \nAPI Version: `2015-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000004e1", + "sortText": "0000048f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases@2020-03-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/settings@2015-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases@2020-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/settings@2015-04-08'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/settings` \nAPI Version: `2015-04-08`" }, "deprecated": false, "preselect": false, - "sortText": "000004e0", + "sortText": "0000048e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases@2020-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/settings@2015-04-08'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases@2020-06-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/settings@2015-11-06'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases` \nAPI Version: `2020-06-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/settings` \nAPI Version: `2015-11-06`" }, "deprecated": false, "preselect": false, - "sortText": "000004df", + "sortText": "0000048d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases@2020-06-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/settings@2015-11-06'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings@2019-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/settings@2016-03-19'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/collections/throughputSettings` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/settings` \nAPI Version: `2016-03-19`" }, "deprecated": false, "preselect": false, - "sortText": "00000501", + "sortText": "0000048c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings@2019-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/settings@2016-03-19'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings@2019-12-12'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/settings@2016-03-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/collections/throughputSettings` \nAPI Version: `2019-12-12`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/settings` \nAPI Version: `2016-03-31`" }, "deprecated": false, "preselect": false, - "sortText": "00000500", + "sortText": "0000048b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings@2019-12-12'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/settings@2016-03-31'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings@2020-03-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings@2015-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/collections/throughputSettings` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/tables/settings` \nAPI Version: `2015-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000004ff", + "sortText": "00000499", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings@2020-03-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings@2015-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings@2020-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings@2015-04-08'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/collections/throughputSettings` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/tables/settings` \nAPI Version: `2015-04-08`" }, "deprecated": false, "preselect": false, - "sortText": "000004fe", + "sortText": "00000498", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings@2020-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings@2015-04-08'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings@2020-06-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings@2015-11-06'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/collections/throughputSettings` \nAPI Version: `2020-06-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/tables/settings` \nAPI Version: `2015-11-06`" }, "deprecated": false, "preselect": false, - "sortText": "000004fd", + "sortText": "00000497", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings@2020-06-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings@2015-11-06'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections@2019-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings@2016-03-19'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/collections` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/tables/settings` \nAPI Version: `2016-03-19`" }, "deprecated": false, "preselect": false, - "sortText": "000004fc", + "sortText": "00000496", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections@2019-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings@2016-03-19'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections@2019-12-12'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings@2016-03-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/collections` \nAPI Version: `2019-12-12`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/tables/settings` \nAPI Version: `2016-03-31`" }, "deprecated": false, "preselect": false, - "sortText": "000004fb", + "sortText": "00000495", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections@2019-12-12'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables/settings@2016-03-31'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections@2020-03-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables@2015-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/collections` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/tables` \nAPI Version: `2015-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000004fa", + "sortText": "00000494", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections@2020-03-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables@2015-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections@2020-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables@2015-04-08'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/collections` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/tables` \nAPI Version: `2015-04-08`" }, "deprecated": false, "preselect": false, - "sortText": "000004f9", + "sortText": "00000493", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections@2020-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables@2015-04-08'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections@2020-06-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables@2015-11-06'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/collections` \nAPI Version: `2020-06-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/tables` \nAPI Version: `2015-11-06`" }, "deprecated": false, "preselect": false, - "sortText": "000004f8", + "sortText": "00000492", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections@2020-06-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables@2015-11-06'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings@2019-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables@2016-03-19'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/throughputSettings` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/tables` \nAPI Version: `2016-03-19`" }, "deprecated": false, "preselect": false, - "sortText": "00000506", + "sortText": "00000491", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings@2019-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables@2016-03-19'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings@2019-12-12'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables@2016-03-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/throughputSettings` \nAPI Version: `2019-12-12`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces/tables` \nAPI Version: `2016-03-31`" }, "deprecated": false, "preselect": false, - "sortText": "00000505", + "sortText": "00000490", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings@2019-12-12'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces/tables@2016-03-31'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings@2020-03-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces@2015-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/throughputSettings` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces` \nAPI Version: `2015-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000504", + "sortText": "0000048a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings@2020-03-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces@2015-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings@2020-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces@2015-04-08'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/throughputSettings` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces` \nAPI Version: `2015-04-08`" }, "deprecated": false, "preselect": false, - "sortText": "00000503", + "sortText": "00000489", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings@2020-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces@2015-04-08'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings@2020-06-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces@2015-11-06'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/throughputSettings` \nAPI Version: `2020-06-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces` \nAPI Version: `2015-11-06`" }, "deprecated": false, "preselect": false, - "sortText": "00000502", + "sortText": "00000488", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings@2020-06-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces@2015-11-06'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases@2019-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces@2016-03-19'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces` \nAPI Version: `2016-03-19`" }, "deprecated": false, "preselect": false, - "sortText": "000004f7", + "sortText": "00000487", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases@2019-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces@2016-03-19'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases@2019-12-12'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces@2016-03-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases` \nAPI Version: `2019-12-12`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/keyspaces` \nAPI Version: `2016-03-31`" }, "deprecated": false, "preselect": false, - "sortText": "000004f6", + "sortText": "00000486", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases@2019-12-12'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/keyspaces@2016-03-31'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases@2020-03-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/tables/settings@2015-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/tables/settings` \nAPI Version: `2015-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000004f5", + "sortText": "000004a3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases@2020-03-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/tables/settings@2015-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases@2020-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/tables/settings@2015-04-08'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/tables/settings` \nAPI Version: `2015-04-08`" }, "deprecated": false, "preselect": false, - "sortText": "000004f4", + "sortText": "000004a2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases@2020-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/tables/settings@2015-04-08'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases@2020-06-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/tables/settings@2015-11-06'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases` \nAPI Version: `2020-06-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/tables/settings` \nAPI Version: `2015-11-06`" }, "deprecated": false, "preselect": false, - "sortText": "000004f3", + "sortText": "000004a1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases@2020-06-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/tables/settings@2015-11-06'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/notebookWorkspaces@2019-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/tables/settings@2016-03-19'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/notebookWorkspaces` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/tables/settings` \nAPI Version: `2016-03-19`" }, "deprecated": false, "preselect": false, - "sortText": "0000050b", + "sortText": "000004a0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/notebookWorkspaces@2019-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/tables/settings@2016-03-19'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/notebookWorkspaces@2019-12-12'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/tables/settings@2016-03-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/notebookWorkspaces` \nAPI Version: `2019-12-12`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/tables/settings` \nAPI Version: `2016-03-31`" }, "deprecated": false, "preselect": false, - "sortText": "0000050a", + "sortText": "0000049f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/notebookWorkspaces@2019-12-12'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/tables/settings@2016-03-31'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/notebookWorkspaces@2020-03-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/tables@2015-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/notebookWorkspaces` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/tables` \nAPI Version: `2015-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000509", + "sortText": "0000049e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/notebookWorkspaces@2020-03-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/tables@2015-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/notebookWorkspaces@2020-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/tables@2015-04-08'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/notebookWorkspaces` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/tables` \nAPI Version: `2015-04-08`" }, "deprecated": false, "preselect": false, - "sortText": "00000508", + "sortText": "0000049d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/notebookWorkspaces@2020-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/tables@2015-04-08'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/notebookWorkspaces@2020-06-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/tables@2015-11-06'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/notebookWorkspaces` \nAPI Version: `2020-06-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/tables` \nAPI Version: `2015-11-06`" }, "deprecated": false, "preselect": false, - "sortText": "00000507", + "sortText": "0000049c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/notebookWorkspaces@2020-06-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/tables@2015-11-06'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections@2019-08-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/tables@2016-03-19'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/privateEndpointConnections` \nAPI Version: `2019-08-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/tables` \nAPI Version: `2016-03-19`" }, "deprecated": false, "preselect": false, - "sortText": "0000050c", + "sortText": "0000049b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections@2019-08-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/tables@2016-03-19'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures@2019-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/apis/tables@2016-03-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/storedProcedures` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/apis/tables` \nAPI Version: `2016-03-31`" }, "deprecated": false, "preselect": false, - "sortText": "0000051b", + "sortText": "0000049a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures@2019-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/apis/tables@2016-03-31'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures@2019-12-12'", + "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/storedProcedures` \nAPI Version: `2019-12-12`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/tables/throughputSettings` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000051a", + "sortText": "000004b2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures@2019-12-12'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings@2019-08-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures@2020-03-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings@2019-12-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/storedProcedures` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/tables/throughputSettings` \nAPI Version: `2019-12-12`" }, "deprecated": false, "preselect": false, - "sortText": "00000519", + "sortText": "000004b1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures@2020-03-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings@2019-12-12'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures@2020-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/storedProcedures` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/tables/throughputSettings` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000518", + "sortText": "000004b0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures@2020-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings@2020-03-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures@2020-06-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/storedProcedures` \nAPI Version: `2020-06-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/tables/throughputSettings` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000517", + "sortText": "000004af", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures@2020-06-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings@2020-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings@2019-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings@2020-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/throughputSettings` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/tables/throughputSettings` \nAPI Version: `2020-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000520", + "sortText": "000004ae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings@2019-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings@2020-06-01-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings@2019-12-12'", + "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/throughputSettings` \nAPI Version: `2019-12-12`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/tables` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000051f", + "sortText": "000004ad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings@2019-12-12'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables@2019-08-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings@2020-03-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables@2019-12-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/throughputSettings` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/tables` \nAPI Version: `2019-12-12`" }, "deprecated": false, "preselect": false, - "sortText": "0000051e", + "sortText": "000004ac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings@2020-03-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables@2019-12-12'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings@2020-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/throughputSettings` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/tables` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000051d", + "sortText": "000004ab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings@2020-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables@2020-03-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings@2020-06-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/throughputSettings` \nAPI Version: `2020-06-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/tables` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000051c", + "sortText": "000004aa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings@2020-06-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables@2020-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers@2019-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables@2020-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/triggers` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/tables` \nAPI Version: `2020-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000525", + "sortText": "000004a9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers@2019-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables@2020-06-01-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers@2019-12-12'", + "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/triggers` \nAPI Version: `2019-12-12`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/throughputSettings` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000524", + "sortText": "000004b7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers@2019-12-12'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings@2019-08-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers@2020-03-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings@2019-12-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/triggers` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/throughputSettings` \nAPI Version: `2019-12-12`" }, "deprecated": false, "preselect": false, - "sortText": "00000523", + "sortText": "000004b6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers@2020-03-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings@2019-12-12'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers@2020-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/triggers` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/throughputSettings` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000522", + "sortText": "000004b5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers@2020-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings@2020-03-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers@2020-06-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/triggers` \nAPI Version: `2020-06-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/throughputSettings` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000521", + "sortText": "000004b4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers@2020-06-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings@2020-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions@2019-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings@2020-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/userDefinedFunctions` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces/throughputSettings` \nAPI Version: `2020-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000052a", + "sortText": "000004b3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions@2019-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings@2020-06-01-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions@2019-12-12'", + "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/userDefinedFunctions` \nAPI Version: `2019-12-12`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000529", + "sortText": "000004a8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions@2019-12-12'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces@2019-08-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions@2020-03-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces@2019-12-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/userDefinedFunctions` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces` \nAPI Version: `2019-12-12`" }, "deprecated": false, "preselect": false, - "sortText": "00000528", + "sortText": "000004a7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions@2020-03-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces@2019-12-12'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions@2020-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/userDefinedFunctions` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000527", + "sortText": "000004a6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions@2020-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces@2020-03-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions@2020-06-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/userDefinedFunctions` \nAPI Version: `2020-06-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000526", + "sortText": "000004a5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions@2020-06-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces@2020-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers@2019-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces@2020-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/cassandraKeyspaces` \nAPI Version: `2020-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000516", + "sortText": "000004a4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers@2019-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces@2020-06-01-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers@2019-12-12'", + "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers` \nAPI Version: `2019-12-12`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/graphs/throughputSettings` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000515", + "sortText": "000004c6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers@2019-12-12'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings@2019-08-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers@2020-03-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings@2019-12-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/graphs/throughputSettings` \nAPI Version: `2019-12-12`" }, "deprecated": false, "preselect": false, - "sortText": "00000514", + "sortText": "000004c5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers@2020-03-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings@2019-12-12'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers@2020-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/graphs/throughputSettings` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000513", + "sortText": "000004c4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers@2020-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings@2020-03-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers@2020-06-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers` \nAPI Version: `2020-06-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/graphs/throughputSettings` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000512", + "sortText": "000004c3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers@2020-06-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings@2020-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings@2019-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings@2020-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/throughputSettings` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/graphs/throughputSettings` \nAPI Version: `2020-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000052f", + "sortText": "000004c2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings@2019-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings@2020-06-01-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings@2019-12-12'", + "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/throughputSettings` \nAPI Version: `2019-12-12`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/graphs` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000052e", + "sortText": "000004c1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings@2019-12-12'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs@2019-08-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings@2020-03-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs@2019-12-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/throughputSettings` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/graphs` \nAPI Version: `2019-12-12`" }, "deprecated": false, "preselect": false, - "sortText": "0000052d", + "sortText": "000004c0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings@2020-03-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs@2019-12-12'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings@2020-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/throughputSettings` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/graphs` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000052c", + "sortText": "000004bf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings@2020-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs@2020-03-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings@2020-06-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/throughputSettings` \nAPI Version: `2020-06-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/graphs` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000052b", + "sortText": "000004be", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings@2020-06-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs@2020-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases@2019-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs@2020-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/graphs` \nAPI Version: `2020-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000511", + "sortText": "000004bd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases@2019-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs@2020-06-01-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases@2019-12-12'", + "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases` \nAPI Version: `2019-12-12`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/throughputSettings` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000510", + "sortText": "000004cb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases@2019-12-12'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings@2019-08-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases@2020-03-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings@2019-12-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/throughputSettings` \nAPI Version: `2019-12-12`" }, "deprecated": false, "preselect": false, - "sortText": "0000050f", + "sortText": "000004ca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases@2020-03-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings@2019-12-12'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases@2020-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/throughputSettings` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000050e", + "sortText": "000004c9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases@2020-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings@2020-03-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases@2020-06-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases` \nAPI Version: `2020-06-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/throughputSettings` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000050d", + "sortText": "000004c8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases@2020-06-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings@2020-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings@2019-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings@2020-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/tables/throughputSettings` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases/throughputSettings` \nAPI Version: `2020-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000539", + "sortText": "000004c7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings@2019-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings@2020-06-01-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings@2019-12-12'", + "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/tables/throughputSettings` \nAPI Version: `2019-12-12`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000538", + "sortText": "000004bc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings@2019-12-12'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases@2019-08-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings@2020-03-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases@2019-12-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/tables/throughputSettings` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases` \nAPI Version: `2019-12-12`" }, "deprecated": false, "preselect": false, - "sortText": "00000537", + "sortText": "000004bb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings@2020-03-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases@2019-12-12'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings@2020-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/tables/throughputSettings` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000536", + "sortText": "000004ba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings@2020-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases@2020-03-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings@2020-06-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/tables/throughputSettings` \nAPI Version: `2020-06-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000535", + "sortText": "000004b9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings@2020-06-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases@2020-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/tables@2019-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases@2020-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/tables` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/gremlinDatabases` \nAPI Version: `2020-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000534", + "sortText": "000004b8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/tables@2019-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/gremlinDatabases@2020-06-01-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/tables@2019-12-12'", + "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/tables` \nAPI Version: `2019-12-12`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/collections/throughputSettings` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000533", + "sortText": "000004da", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/tables@2019-12-12'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings@2019-08-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/tables@2020-03-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings@2019-12-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/tables` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/collections/throughputSettings` \nAPI Version: `2019-12-12`" }, "deprecated": false, "preselect": false, - "sortText": "00000532", + "sortText": "000004d9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/tables@2020-03-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings@2019-12-12'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/tables@2020-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/tables` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/collections/throughputSettings` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000531", + "sortText": "000004d8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/tables@2020-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings@2020-03-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts/tables@2020-06-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/tables` \nAPI Version: `2020-06-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/collections/throughputSettings` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000530", + "sortText": "000004d7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts/tables@2020-06-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings@2020-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts@2015-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings@2020-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts` \nAPI Version: `2015-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/collections/throughputSettings` \nAPI Version: `2020-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000484", + "sortText": "000004d6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts@2015-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings@2020-06-01-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts@2015-04-08'", + "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts` \nAPI Version: `2015-04-08`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/collections` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000483", + "sortText": "000004d5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts@2015-04-08'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections@2019-08-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts@2015-11-06'", + "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections@2019-12-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts` \nAPI Version: `2015-11-06`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/collections` \nAPI Version: `2019-12-12`" }, "deprecated": false, "preselect": false, - "sortText": "00000482", + "sortText": "000004d4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts@2015-11-06'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections@2019-12-12'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts@2016-03-19'", + "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts` \nAPI Version: `2016-03-19`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/collections` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000481", + "sortText": "000004d3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts@2016-03-19'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections@2020-03-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts@2016-03-31'", + "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts` \nAPI Version: `2016-03-31`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/collections` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000480", + "sortText": "000004d2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts@2016-03-31'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections@2020-04-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts@2019-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections@2020-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/collections` \nAPI Version: `2020-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000047f", + "sortText": "000004d1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts@2019-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections@2020-06-01-preview'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts@2019-12-12'", + "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts` \nAPI Version: `2019-12-12`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/throughputSettings` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000047e", + "sortText": "000004df", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts@2019-12-12'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings@2019-08-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts@2020-03-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings@2019-12-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/throughputSettings` \nAPI Version: `2019-12-12`" }, "deprecated": false, "preselect": false, - "sortText": "0000047d", + "sortText": "000004de", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts@2020-03-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings@2019-12-12'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts@2020-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/throughputSettings` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000047c", + "sortText": "000004dd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts@2020-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings@2020-03-01'" } }, { - "label": "'Microsoft.DocumentDB/databaseAccounts@2020-06-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts` \nAPI Version: `2020-06-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/throughputSettings` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000047b", + "sortText": "000004dc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DocumentDB/databaseAccounts@2020-06-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings@2020-04-01'" } }, { - "label": "'Microsoft.DomainRegistration/domains/domainOwnershipIdentifiers@2015-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings@2020-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DomainRegistration` \nType: `domains/domainOwnershipIdentifiers` \nAPI Version: `2015-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases/throughputSettings` \nAPI Version: `2020-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000542", + "sortText": "000004db", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DomainRegistration/domains/domainOwnershipIdentifiers@2015-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings@2020-06-01-preview'" } }, { - "label": "'Microsoft.DomainRegistration/domains/domainOwnershipIdentifiers@2018-02-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DomainRegistration` \nType: `domains/domainOwnershipIdentifiers` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000541", + "sortText": "000004d0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DomainRegistration/domains/domainOwnershipIdentifiers@2018-02-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases@2019-08-01'" } }, { - "label": "'Microsoft.DomainRegistration/domains/domainOwnershipIdentifiers@2019-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases@2019-12-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DomainRegistration` \nType: `domains/domainOwnershipIdentifiers` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases` \nAPI Version: `2019-12-12`" }, "deprecated": false, "preselect": false, - "sortText": "00000540", + "sortText": "000004cf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DomainRegistration/domains/domainOwnershipIdentifiers@2019-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases@2019-12-12'" } }, { - "label": "'Microsoft.DomainRegistration/domains/domainOwnershipIdentifiers@2020-06-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DomainRegistration` \nType: `domains/domainOwnershipIdentifiers` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000053f", + "sortText": "000004ce", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DomainRegistration/domains/domainOwnershipIdentifiers@2020-06-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases@2020-03-01'" } }, { - "label": "'Microsoft.DomainRegistration/domains@2015-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DomainRegistration` \nType: `domains` \nAPI Version: `2015-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000053e", + "sortText": "000004cd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DomainRegistration/domains@2015-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases@2020-04-01'" } }, { - "label": "'Microsoft.DomainRegistration/domains@2015-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases@2020-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DomainRegistration` \nType: `domains` \nAPI Version: `2015-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/mongodbDatabases` \nAPI Version: `2020-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000053d", + "sortText": "000004cc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DomainRegistration/domains@2015-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/mongodbDatabases@2020-06-01-preview'" } }, { - "label": "'Microsoft.DomainRegistration/domains@2018-02-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/notebookWorkspaces@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DomainRegistration` \nType: `domains` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/notebookWorkspaces` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000053c", + "sortText": "000004e4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DomainRegistration/domains@2018-02-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/notebookWorkspaces@2019-08-01'" } }, { - "label": "'Microsoft.DomainRegistration/domains@2019-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/notebookWorkspaces@2019-12-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DomainRegistration` \nType: `domains` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/notebookWorkspaces` \nAPI Version: `2019-12-12`" }, "deprecated": false, "preselect": false, - "sortText": "0000053b", + "sortText": "000004e3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DomainRegistration/domains@2019-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/notebookWorkspaces@2019-12-12'" } }, { - "label": "'Microsoft.DomainRegistration/domains@2020-06-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/notebookWorkspaces@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.DomainRegistration` \nType: `domains` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/notebookWorkspaces` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000053a", + "sortText": "000004e2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.DomainRegistration/domains@2020-06-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/notebookWorkspaces@2020-03-01'" } }, { - "label": "'Microsoft.EngagementFabric/Accounts/Channels@2018-09-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/notebookWorkspaces@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EngagementFabric` \nType: `Accounts/Channels` \nAPI Version: `2018-09-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/notebookWorkspaces` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000544", + "sortText": "000004e1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EngagementFabric/Accounts/Channels@2018-09-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/notebookWorkspaces@2020-04-01'" } }, { - "label": "'Microsoft.EngagementFabric/Accounts@2018-09-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/notebookWorkspaces@2020-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EngagementFabric` \nType: `Accounts` \nAPI Version: `2018-09-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/notebookWorkspaces` \nAPI Version: `2020-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000543", + "sortText": "000004e0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EngagementFabric/Accounts@2018-09-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/notebookWorkspaces@2020-06-01-preview'" } }, { - "label": "'Microsoft.EnterpriseKnowledgeGraph/services@2018-12-03'", + "label": "'Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections@2019-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EnterpriseKnowledgeGraph` \nType: `services` \nAPI Version: `2018-12-03`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/privateEndpointConnections` \nAPI Version: `2019-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000545", + "sortText": "000004e5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EnterpriseKnowledgeGraph/services@2018-12-03'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/privateEndpointConnections@2019-08-01-preview'" } }, { - "label": "'Microsoft.EventGrid/domains/privateEndpointConnections@2020-04-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `domains/privateEndpointConnections` \nAPI Version: `2020-04-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/storedProcedures` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000054d", + "sortText": "000004f4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/domains/privateEndpointConnections@2020-04-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures@2019-08-01'" } }, { - "label": "'Microsoft.EventGrid/domains/privateEndpointConnections@2020-06-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures@2019-12-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `domains/privateEndpointConnections` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/storedProcedures` \nAPI Version: `2019-12-12`" }, "deprecated": false, "preselect": false, - "sortText": "0000054c", + "sortText": "000004f3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/domains/privateEndpointConnections@2020-06-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures@2019-12-12'" } }, { - "label": "'Microsoft.EventGrid/domains@2018-09-15-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `domains` \nAPI Version: `2018-09-15-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/storedProcedures` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000054b", + "sortText": "000004f2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/domains@2018-09-15-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures@2020-03-01'" } }, { - "label": "'Microsoft.EventGrid/domains@2019-02-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `domains` \nAPI Version: `2019-02-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/storedProcedures` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000054a", + "sortText": "000004f1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/domains@2019-02-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures@2020-04-01'" } }, { - "label": "'Microsoft.EventGrid/domains@2019-06-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures@2020-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `domains` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/storedProcedures` \nAPI Version: `2020-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000549", + "sortText": "000004f0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/domains@2019-06-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/storedProcedures@2020-06-01-preview'" } }, { - "label": "'Microsoft.EventGrid/domains@2020-01-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `domains` \nAPI Version: `2020-01-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/throughputSettings` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000548", + "sortText": "000004f9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/domains@2020-01-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings@2019-08-01'" } }, { - "label": "'Microsoft.EventGrid/domains@2020-04-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings@2019-12-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `domains` \nAPI Version: `2020-04-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/throughputSettings` \nAPI Version: `2019-12-12`" }, "deprecated": false, "preselect": false, - "sortText": "00000547", + "sortText": "000004f8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/domains@2020-04-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings@2019-12-12'" } }, { - "label": "'Microsoft.EventGrid/domains@2020-06-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `domains` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/throughputSettings` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000546", + "sortText": "000004f7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/domains@2020-06-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings@2020-03-01'" } }, { - "label": "'Microsoft.EventGrid/eventSubscriptions@2017-06-15-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `eventSubscriptions` \nAPI Version: `2017-06-15-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/throughputSettings` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000558", + "sortText": "000004f6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/eventSubscriptions@2017-06-15-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings@2020-04-01'" } }, { - "label": "'Microsoft.EventGrid/eventSubscriptions@2017-09-15-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings@2020-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `eventSubscriptions` \nAPI Version: `2017-09-15-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/throughputSettings` \nAPI Version: `2020-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000557", + "sortText": "000004f5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/eventSubscriptions@2017-09-15-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings@2020-06-01-preview'" } }, { - "label": "'Microsoft.EventGrid/eventSubscriptions@2018-01-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `eventSubscriptions` \nAPI Version: `2018-01-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/triggers` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000556", + "sortText": "000004fe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/eventSubscriptions@2018-01-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers@2019-08-01'" } }, { - "label": "'Microsoft.EventGrid/eventSubscriptions@2018-05-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers@2019-12-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `eventSubscriptions` \nAPI Version: `2018-05-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/triggers` \nAPI Version: `2019-12-12`" }, "deprecated": false, "preselect": false, - "sortText": "00000555", + "sortText": "000004fd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/eventSubscriptions@2018-05-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers@2019-12-12'" } }, { - "label": "'Microsoft.EventGrid/eventSubscriptions@2018-09-15-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `eventSubscriptions` \nAPI Version: `2018-09-15-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/triggers` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000554", + "sortText": "000004fc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/eventSubscriptions@2018-09-15-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers@2020-03-01'" } }, { - "label": "'Microsoft.EventGrid/eventSubscriptions@2019-01-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `eventSubscriptions` \nAPI Version: `2019-01-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/triggers` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000553", + "sortText": "000004fb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/eventSubscriptions@2019-01-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers@2020-04-01'" } }, { - "label": "'Microsoft.EventGrid/eventSubscriptions@2019-02-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers@2020-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `eventSubscriptions` \nAPI Version: `2019-02-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/triggers` \nAPI Version: `2020-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000552", + "sortText": "000004fa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/eventSubscriptions@2019-02-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/triggers@2020-06-01-preview'" } }, { - "label": "'Microsoft.EventGrid/eventSubscriptions@2019-06-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `eventSubscriptions` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/userDefinedFunctions` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000551", + "sortText": "00000503", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/eventSubscriptions@2019-06-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions@2019-08-01'" } }, { - "label": "'Microsoft.EventGrid/eventSubscriptions@2020-01-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions@2019-12-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `eventSubscriptions` \nAPI Version: `2020-01-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/userDefinedFunctions` \nAPI Version: `2019-12-12`" }, "deprecated": false, "preselect": false, - "sortText": "00000550", + "sortText": "00000502", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/eventSubscriptions@2020-01-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions@2019-12-12'" } }, { - "label": "'Microsoft.EventGrid/eventSubscriptions@2020-04-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `eventSubscriptions` \nAPI Version: `2020-04-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/userDefinedFunctions` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000054f", + "sortText": "00000501", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/eventSubscriptions@2020-04-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions@2020-03-01'" } }, { - "label": "'Microsoft.EventGrid/eventSubscriptions@2020-06-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `eventSubscriptions` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/userDefinedFunctions` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000054e", + "sortText": "00000500", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/eventSubscriptions@2020-06-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions@2020-04-01'" } }, { - "label": "'Microsoft.EventGrid/partnerNamespaces/eventChannels@2020-04-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions@2020-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `partnerNamespaces/eventChannels` \nAPI Version: `2020-04-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers/userDefinedFunctions` \nAPI Version: `2020-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000055a", + "sortText": "000004ff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/partnerNamespaces/eventChannels@2020-04-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/userDefinedFunctions@2020-06-01-preview'" } }, { - "label": "'Microsoft.EventGrid/partnerNamespaces@2020-04-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `partnerNamespaces` \nAPI Version: `2020-04-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000559", + "sortText": "000004ef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/partnerNamespaces@2020-04-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers@2019-08-01'" } }, { - "label": "'Microsoft.EventGrid/partnerRegistrations@2020-04-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers@2019-12-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `partnerRegistrations` \nAPI Version: `2020-04-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers` \nAPI Version: `2019-12-12`" }, "deprecated": false, "preselect": false, - "sortText": "0000055b", + "sortText": "000004ee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/partnerRegistrations@2020-04-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers@2019-12-12'" } }, { - "label": "'Microsoft.EventGrid/partnerTopics/eventSubscriptions@2020-04-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `partnerTopics/eventSubscriptions` \nAPI Version: `2020-04-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000055c", + "sortText": "000004ed", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/partnerTopics/eventSubscriptions@2020-04-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers@2020-03-01'" } }, { - "label": "'Microsoft.EventGrid/systemTopics/eventSubscriptions@2020-04-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `systemTopics/eventSubscriptions` \nAPI Version: `2020-04-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000055e", + "sortText": "000004ec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/systemTopics/eventSubscriptions@2020-04-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers@2020-04-01'" } }, { - "label": "'Microsoft.EventGrid/systemTopics@2020-04-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers@2020-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `systemTopics` \nAPI Version: `2020-04-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/containers` \nAPI Version: `2020-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000055d", + "sortText": "000004eb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/systemTopics@2020-04-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers@2020-06-01-preview'" } }, { - "label": "'Microsoft.EventGrid/topics/privateEndpointConnections@2020-04-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `topics/privateEndpointConnections` \nAPI Version: `2020-04-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/throughputSettings` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000056b", + "sortText": "00000508", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/topics/privateEndpointConnections@2020-04-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings@2019-08-01'" } }, { - "label": "'Microsoft.EventGrid/topics/privateEndpointConnections@2020-06-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings@2019-12-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `topics/privateEndpointConnections` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/throughputSettings` \nAPI Version: `2019-12-12`" }, "deprecated": false, "preselect": false, - "sortText": "0000056a", + "sortText": "00000507", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/topics/privateEndpointConnections@2020-06-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings@2019-12-12'" } }, { - "label": "'Microsoft.EventGrid/topics@2017-06-15-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `topics` \nAPI Version: `2017-06-15-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/throughputSettings` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000569", + "sortText": "00000506", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/topics@2017-06-15-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings@2020-03-01'" } }, { - "label": "'Microsoft.EventGrid/topics@2017-09-15-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `topics` \nAPI Version: `2017-09-15-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/throughputSettings` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000568", + "sortText": "00000505", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/topics@2017-09-15-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings@2020-04-01'" } }, { - "label": "'Microsoft.EventGrid/topics@2018-01-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings@2020-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `topics` \nAPI Version: `2018-01-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases/throughputSettings` \nAPI Version: `2020-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000567", + "sortText": "00000504", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/topics@2018-01-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings@2020-06-01-preview'" } }, { - "label": "'Microsoft.EventGrid/topics@2018-05-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `topics` \nAPI Version: `2018-05-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000566", + "sortText": "000004ea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/topics@2018-05-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases@2019-08-01'" } }, { - "label": "'Microsoft.EventGrid/topics@2018-09-15-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases@2019-12-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `topics` \nAPI Version: `2018-09-15-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases` \nAPI Version: `2019-12-12`" }, "deprecated": false, "preselect": false, - "sortText": "00000565", + "sortText": "000004e9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/topics@2018-09-15-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases@2019-12-12'" } }, { - "label": "'Microsoft.EventGrid/topics@2019-01-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `topics` \nAPI Version: `2019-01-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000564", + "sortText": "000004e8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/topics@2019-01-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases@2020-03-01'" } }, { - "label": "'Microsoft.EventGrid/topics@2019-02-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `topics` \nAPI Version: `2019-02-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000563", + "sortText": "000004e7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/topics@2019-02-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases@2020-04-01'" } }, { - "label": "'Microsoft.EventGrid/topics@2019-06-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases@2020-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `topics` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/sqlDatabases` \nAPI Version: `2020-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000562", + "sortText": "000004e6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/topics@2019-06-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/sqlDatabases@2020-06-01-preview'" } }, { - "label": "'Microsoft.EventGrid/topics@2020-01-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `topics` \nAPI Version: `2020-01-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/tables/throughputSettings` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000561", + "sortText": "00000512", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/topics@2020-01-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings@2019-08-01'" } }, { - "label": "'Microsoft.EventGrid/topics@2020-04-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings@2019-12-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `topics` \nAPI Version: `2020-04-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/tables/throughputSettings` \nAPI Version: `2019-12-12`" }, "deprecated": false, "preselect": false, - "sortText": "00000560", + "sortText": "00000511", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/topics@2020-04-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings@2019-12-12'" } }, { - "label": "'Microsoft.EventGrid/topics@2020-06-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventGrid` \nType: `topics` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/tables/throughputSettings` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000055f", + "sortText": "00000510", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventGrid/topics@2020-06-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings@2020-03-01'" } }, { - "label": "'Microsoft.EventHub/clusters@2018-01-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventHub` \nType: `clusters` \nAPI Version: `2018-01-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/tables/throughputSettings` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000056c", + "sortText": "0000050f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventHub/clusters@2018-01-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings@2020-04-01'" } }, { - "label": "'Microsoft.EventHub/namespaces/AuthorizationRules@2014-09-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings@2020-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/AuthorizationRules` \nAPI Version: `2014-09-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/tables/throughputSettings` \nAPI Version: `2020-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000573", + "sortText": "0000050e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventHub/namespaces/AuthorizationRules@2014-09-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings@2020-06-01-preview'" } }, { - "label": "'Microsoft.EventHub/namespaces/AuthorizationRules@2015-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/tables@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/AuthorizationRules` \nAPI Version: `2015-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/tables` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000572", + "sortText": "0000050d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventHub/namespaces/AuthorizationRules@2015-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/tables@2019-08-01'" } }, { - "label": "'Microsoft.EventHub/namespaces/authorizationRules@2017-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/tables@2019-12-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/authorizationRules` \nAPI Version: `2017-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/tables` \nAPI Version: `2019-12-12`" }, "deprecated": false, "preselect": false, - "sortText": "00000571", + "sortText": "0000050c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventHub/namespaces/authorizationRules@2017-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/tables@2019-12-12'" } }, { - "label": "'Microsoft.EventHub/namespaces/disasterRecoveryConfigs@2017-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/tables@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/disasterRecoveryConfigs` \nAPI Version: `2017-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/tables` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000574", + "sortText": "0000050b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventHub/namespaces/disasterRecoveryConfigs@2017-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/tables@2020-03-01'" } }, { - "label": "'Microsoft.EventHub/namespaces/eventhubs/authorizationRules@2014-09-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/tables@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/eventhubs/authorizationRules` \nAPI Version: `2014-09-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/tables` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000057a", + "sortText": "0000050a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventHub/namespaces/eventhubs/authorizationRules@2014-09-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/tables@2020-04-01'" } }, { - "label": "'Microsoft.EventHub/namespaces/eventhubs/authorizationRules@2015-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts/tables@2020-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/eventhubs/authorizationRules` \nAPI Version: `2015-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts/tables` \nAPI Version: `2020-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000579", + "sortText": "00000509", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventHub/namespaces/eventhubs/authorizationRules@2015-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts/tables@2020-06-01-preview'" } }, { - "label": "'Microsoft.EventHub/namespaces/eventhubs/authorizationRules@2017-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts@2015-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/eventhubs/authorizationRules` \nAPI Version: `2017-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts` \nAPI Version: `2015-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000578", + "sortText": "0000045d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventHub/namespaces/eventhubs/authorizationRules@2017-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts@2015-04-01'" } }, { - "label": "'Microsoft.EventHub/namespaces/eventhubs/consumergroups@2014-09-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts@2015-04-08'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/eventhubs/consumergroups` \nAPI Version: `2014-09-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts` \nAPI Version: `2015-04-08`" }, "deprecated": false, "preselect": false, - "sortText": "0000057d", + "sortText": "0000045c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventHub/namespaces/eventhubs/consumergroups@2014-09-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts@2015-04-08'" } }, { - "label": "'Microsoft.EventHub/namespaces/eventhubs/consumergroups@2015-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts@2015-11-06'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/eventhubs/consumergroups` \nAPI Version: `2015-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts` \nAPI Version: `2015-11-06`" }, "deprecated": false, "preselect": false, - "sortText": "0000057c", + "sortText": "0000045b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventHub/namespaces/eventhubs/consumergroups@2015-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts@2015-11-06'" } }, { - "label": "'Microsoft.EventHub/namespaces/eventhubs/consumergroups@2017-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts@2016-03-19'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/eventhubs/consumergroups` \nAPI Version: `2017-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts` \nAPI Version: `2016-03-19`" }, "deprecated": false, "preselect": false, - "sortText": "0000057b", + "sortText": "0000045a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventHub/namespaces/eventhubs/consumergroups@2017-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts@2016-03-19'" } }, { - "label": "'Microsoft.EventHub/namespaces/eventhubs@2014-09-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts@2016-03-31'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/eventhubs` \nAPI Version: `2014-09-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts` \nAPI Version: `2016-03-31`" }, "deprecated": false, "preselect": false, - "sortText": "00000577", + "sortText": "00000459", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventHub/namespaces/eventhubs@2014-09-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts@2016-03-31'" } }, { - "label": "'Microsoft.EventHub/namespaces/eventhubs@2015-08-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/eventhubs` \nAPI Version: `2015-08-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000576", + "sortText": "00000458", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventHub/namespaces/eventhubs@2015-08-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts@2019-08-01'" } }, { - "label": "'Microsoft.EventHub/namespaces/eventhubs@2017-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts@2019-12-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/eventhubs` \nAPI Version: `2017-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts` \nAPI Version: `2019-12-12`" }, "deprecated": false, "preselect": false, - "sortText": "00000575", + "sortText": "00000457", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventHub/namespaces/eventhubs@2017-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts@2019-12-12'" } }, { - "label": "'Microsoft.EventHub/namespaces/ipfilterrules@2018-01-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/ipfilterrules` \nAPI Version: `2018-01-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000057e", + "sortText": "00000456", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventHub/namespaces/ipfilterrules@2018-01-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts@2020-03-01'" } }, { - "label": "'Microsoft.EventHub/namespaces/networkRuleSets@2017-04-01'", + "label": "'Microsoft.DocumentDB/databaseAccounts@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/networkRuleSets` \nAPI Version: `2017-04-01`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000580", + "sortText": "00000455", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventHub/namespaces/networkRuleSets@2017-04-01'" + "newText": "'Microsoft.DocumentDB/databaseAccounts@2020-04-01'" } }, { - "label": "'Microsoft.EventHub/namespaces/networkRuleSets@2018-01-01-preview'", + "label": "'Microsoft.DocumentDB/databaseAccounts@2020-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/networkRuleSets` \nAPI Version: `2018-01-01-preview`" + "value": "Namespace: `Microsoft.DocumentDB` \nType: `databaseAccounts` \nAPI Version: `2020-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000057f", + "sortText": "00000454", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventHub/namespaces/networkRuleSets@2018-01-01-preview'" + "newText": "'Microsoft.DocumentDB/databaseAccounts@2020-06-01-preview'" } }, { - "label": "'Microsoft.EventHub/namespaces/privateEndpointConnections@2018-01-01-preview'", + "label": "'Microsoft.DomainRegistration/domains/domainOwnershipIdentifiers@2015-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/privateEndpointConnections` \nAPI Version: `2018-01-01-preview`" + "value": "Namespace: `Microsoft.DomainRegistration` \nType: `domains/domainOwnershipIdentifiers` \nAPI Version: `2015-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000581", + "sortText": "0000051b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventHub/namespaces/privateEndpointConnections@2018-01-01-preview'" + "newText": "'Microsoft.DomainRegistration/domains/domainOwnershipIdentifiers@2015-04-01'" } }, { - "label": "'Microsoft.EventHub/namespaces/virtualnetworkrules@2018-01-01-preview'", + "label": "'Microsoft.DomainRegistration/domains/domainOwnershipIdentifiers@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/virtualnetworkrules` \nAPI Version: `2018-01-01-preview`" + "value": "Namespace: `Microsoft.DomainRegistration` \nType: `domains/domainOwnershipIdentifiers` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000582", + "sortText": "0000051a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventHub/namespaces/virtualnetworkrules@2018-01-01-preview'" + "newText": "'Microsoft.DomainRegistration/domains/domainOwnershipIdentifiers@2018-02-01'" } }, { - "label": "'Microsoft.EventHub/namespaces@2014-09-01'", + "label": "'Microsoft.DomainRegistration/domains/domainOwnershipIdentifiers@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces` \nAPI Version: `2014-09-01`" + "value": "Namespace: `Microsoft.DomainRegistration` \nType: `domains/domainOwnershipIdentifiers` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000570", + "sortText": "00000519", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventHub/namespaces@2014-09-01'" + "newText": "'Microsoft.DomainRegistration/domains/domainOwnershipIdentifiers@2019-08-01'" } }, { - "label": "'Microsoft.EventHub/namespaces@2015-08-01'", + "label": "'Microsoft.DomainRegistration/domains/domainOwnershipIdentifiers@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces` \nAPI Version: `2015-08-01`" + "value": "Namespace: `Microsoft.DomainRegistration` \nType: `domains/domainOwnershipIdentifiers` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000056f", + "sortText": "00000518", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventHub/namespaces@2015-08-01'" + "newText": "'Microsoft.DomainRegistration/domains/domainOwnershipIdentifiers@2020-06-01'" } }, { - "label": "'Microsoft.EventHub/namespaces@2017-04-01'", + "label": "'Microsoft.DomainRegistration/domains@2015-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces` \nAPI Version: `2017-04-01`" + "value": "Namespace: `Microsoft.DomainRegistration` \nType: `domains` \nAPI Version: `2015-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000056e", + "sortText": "00000517", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventHub/namespaces@2017-04-01'" + "newText": "'Microsoft.DomainRegistration/domains@2015-04-01'" } }, { - "label": "'Microsoft.EventHub/namespaces@2018-01-01-preview'", + "label": "'Microsoft.DomainRegistration/domains@2015-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces` \nAPI Version: `2018-01-01-preview`" + "value": "Namespace: `Microsoft.DomainRegistration` \nType: `domains` \nAPI Version: `2015-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000056d", + "sortText": "00000516", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.EventHub/namespaces@2018-01-01-preview'" + "newText": "'Microsoft.DomainRegistration/domains@2015-08-01'" } }, { - "label": "'Microsoft.Fabric.Admin/fabricLocations/ipPools@2016-05-01'", + "label": "'Microsoft.DomainRegistration/domains@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Fabric.Admin` \nType: `fabricLocations/ipPools` \nAPI Version: `2016-05-01`" + "value": "Namespace: `Microsoft.DomainRegistration` \nType: `domains` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000583", + "sortText": "00000515", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Fabric.Admin/fabricLocations/ipPools@2016-05-01'" + "newText": "'Microsoft.DomainRegistration/domains@2018-02-01'" } }, { - "label": "'Microsoft.GuestConfiguration/guestConfigurationAssignments@2018-01-20-preview'", + "label": "'Microsoft.DomainRegistration/domains@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.GuestConfiguration` \nType: `guestConfigurationAssignments` \nAPI Version: `2018-01-20-preview`" + "value": "Namespace: `Microsoft.DomainRegistration` \nType: `domains` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000587", + "sortText": "00000514", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.GuestConfiguration/guestConfigurationAssignments@2018-01-20-preview'" + "newText": "'Microsoft.DomainRegistration/domains@2019-08-01'" } }, { - "label": "'Microsoft.GuestConfiguration/guestConfigurationAssignments@2018-06-30-preview'", + "label": "'Microsoft.DomainRegistration/domains@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.GuestConfiguration` \nType: `guestConfigurationAssignments` \nAPI Version: `2018-06-30-preview`" + "value": "Namespace: `Microsoft.DomainRegistration` \nType: `domains` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000586", + "sortText": "00000513", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.GuestConfiguration/guestConfigurationAssignments@2018-06-30-preview'" + "newText": "'Microsoft.DomainRegistration/domains@2020-06-01'" } }, { - "label": "'Microsoft.GuestConfiguration/guestConfigurationAssignments@2018-11-20'", + "label": "'Microsoft.EngagementFabric/Accounts/Channels@2018-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.GuestConfiguration` \nType: `guestConfigurationAssignments` \nAPI Version: `2018-11-20`" + "value": "Namespace: `Microsoft.EngagementFabric` \nType: `Accounts/Channels` \nAPI Version: `2018-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000585", + "sortText": "0000051d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.GuestConfiguration/guestConfigurationAssignments@2018-11-20'" + "newText": "'Microsoft.EngagementFabric/Accounts/Channels@2018-09-01-preview'" } }, { - "label": "'Microsoft.GuestConfiguration/guestConfigurationAssignments@2020-06-25'", + "label": "'Microsoft.EngagementFabric/Accounts@2018-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.GuestConfiguration` \nType: `guestConfigurationAssignments` \nAPI Version: `2020-06-25`" + "value": "Namespace: `Microsoft.EngagementFabric` \nType: `Accounts` \nAPI Version: `2018-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000584", + "sortText": "0000051c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.GuestConfiguration/guestConfigurationAssignments@2020-06-25'" + "newText": "'Microsoft.EngagementFabric/Accounts@2018-09-01-preview'" } }, { - "label": "'Microsoft.HDInsight/clusters/applications@2015-03-01-preview'", + "label": "'Microsoft.EnterpriseKnowledgeGraph/services@2018-12-03'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HDInsight` \nType: `clusters/applications` \nAPI Version: `2015-03-01-preview`" + "value": "Namespace: `Microsoft.EnterpriseKnowledgeGraph` \nType: `services` \nAPI Version: `2018-12-03`" }, "deprecated": false, "preselect": false, - "sortText": "00000590", + "sortText": "0000051e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HDInsight/clusters/applications@2015-03-01-preview'" + "newText": "'Microsoft.EnterpriseKnowledgeGraph/services@2018-12-03'" } }, { - "label": "'Microsoft.HDInsight/clusters/applications@2018-06-01-preview'", + "label": "'Microsoft.EventGrid/domains/privateEndpointConnections@2020-04-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HDInsight` \nType: `clusters/applications` \nAPI Version: `2018-06-01-preview`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `domains/privateEndpointConnections` \nAPI Version: `2020-04-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000058f", + "sortText": "00000526", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HDInsight/clusters/applications@2018-06-01-preview'" + "newText": "'Microsoft.EventGrid/domains/privateEndpointConnections@2020-04-01-preview'" } }, { - "label": "'Microsoft.HDInsight/clusters@2015-03-01-preview'", + "label": "'Microsoft.EventGrid/domains/privateEndpointConnections@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HDInsight` \nType: `clusters` \nAPI Version: `2015-03-01-preview`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `domains/privateEndpointConnections` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000058e", + "sortText": "00000525", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HDInsight/clusters@2015-03-01-preview'" + "newText": "'Microsoft.EventGrid/domains/privateEndpointConnections@2020-06-01'" } }, { - "label": "'Microsoft.HDInsight/clusters@2018-06-01-preview'", + "label": "'Microsoft.EventGrid/domains@2018-09-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HDInsight` \nType: `clusters` \nAPI Version: `2018-06-01-preview`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `domains` \nAPI Version: `2018-09-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000058d", + "sortText": "00000524", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HDInsight/clusters@2018-06-01-preview'" + "newText": "'Microsoft.EventGrid/domains@2018-09-15-preview'" } }, { - "label": "'Microsoft.HanaOnAzure/hanaInstances@2017-11-03-preview'", + "label": "'Microsoft.EventGrid/domains@2019-02-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HanaOnAzure` \nType: `hanaInstances` \nAPI Version: `2017-11-03-preview`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `domains` \nAPI Version: `2019-02-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000588", + "sortText": "00000523", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HanaOnAzure/hanaInstances@2017-11-03-preview'" + "newText": "'Microsoft.EventGrid/domains@2019-02-01-preview'" } }, { - "label": "'Microsoft.HanaOnAzure/sapMonitors/providerInstances@2020-02-07-preview'", + "label": "'Microsoft.EventGrid/domains@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HanaOnAzure` \nType: `sapMonitors/providerInstances` \nAPI Version: `2020-02-07-preview`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `domains` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000058b", + "sortText": "00000522", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HanaOnAzure/sapMonitors/providerInstances@2020-02-07-preview'" + "newText": "'Microsoft.EventGrid/domains@2019-06-01'" } }, { - "label": "'Microsoft.HanaOnAzure/sapMonitors@2017-11-03-preview'", + "label": "'Microsoft.EventGrid/domains@2020-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HanaOnAzure` \nType: `sapMonitors` \nAPI Version: `2017-11-03-preview`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `domains` \nAPI Version: `2020-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000058a", + "sortText": "00000521", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HanaOnAzure/sapMonitors@2017-11-03-preview'" + "newText": "'Microsoft.EventGrid/domains@2020-01-01-preview'" } }, { - "label": "'Microsoft.HanaOnAzure/sapMonitors@2020-02-07-preview'", + "label": "'Microsoft.EventGrid/domains@2020-04-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HanaOnAzure` \nType: `sapMonitors` \nAPI Version: `2020-02-07-preview`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `domains` \nAPI Version: `2020-04-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000589", + "sortText": "00000520", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HanaOnAzure/sapMonitors@2020-02-07-preview'" + "newText": "'Microsoft.EventGrid/domains@2020-04-01-preview'" } }, { - "label": "'Microsoft.HardwareSecurityModules/dedicatedHSMs@2018-10-31-preview'", + "label": "'Microsoft.EventGrid/domains@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HardwareSecurityModules` \nType: `dedicatedHSMs` \nAPI Version: `2018-10-31-preview`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `domains` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000058c", + "sortText": "0000051f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HardwareSecurityModules/dedicatedHSMs@2018-10-31-preview'" + "newText": "'Microsoft.EventGrid/domains@2020-06-01'" } }, { - "label": "'Microsoft.HealthBot/healthBots@2020-10-20-preview'", + "label": "'Microsoft.EventGrid/eventSubscriptions@2017-06-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HealthBot` \nType: `healthBots` \nAPI Version: `2020-10-20-preview`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `eventSubscriptions` \nAPI Version: `2017-06-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000591", + "sortText": "00000531", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HealthBot/healthBots@2020-10-20-preview'" + "newText": "'Microsoft.EventGrid/eventSubscriptions@2017-06-15-preview'" } }, { - "label": "'Microsoft.HealthcareApis/services/privateEndpointConnections@2020-03-30'", + "label": "'Microsoft.EventGrid/eventSubscriptions@2017-09-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HealthcareApis` \nType: `services/privateEndpointConnections` \nAPI Version: `2020-03-30`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `eventSubscriptions` \nAPI Version: `2017-09-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000596", + "sortText": "00000530", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HealthcareApis/services/privateEndpointConnections@2020-03-30'" + "newText": "'Microsoft.EventGrid/eventSubscriptions@2017-09-15-preview'" } }, { - "label": "'Microsoft.HealthcareApis/services@2018-08-20-preview'", + "label": "'Microsoft.EventGrid/eventSubscriptions@2018-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HealthcareApis` \nType: `services` \nAPI Version: `2018-08-20-preview`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `eventSubscriptions` \nAPI Version: `2018-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000595", + "sortText": "0000052f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HealthcareApis/services@2018-08-20-preview'" + "newText": "'Microsoft.EventGrid/eventSubscriptions@2018-01-01'" } }, { - "label": "'Microsoft.HealthcareApis/services@2019-09-16'", + "label": "'Microsoft.EventGrid/eventSubscriptions@2018-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HealthcareApis` \nType: `services` \nAPI Version: `2019-09-16`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `eventSubscriptions` \nAPI Version: `2018-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000594", + "sortText": "0000052e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HealthcareApis/services@2019-09-16'" + "newText": "'Microsoft.EventGrid/eventSubscriptions@2018-05-01-preview'" } }, { - "label": "'Microsoft.HealthcareApis/services@2020-03-15'", + "label": "'Microsoft.EventGrid/eventSubscriptions@2018-09-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HealthcareApis` \nType: `services` \nAPI Version: `2020-03-15`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `eventSubscriptions` \nAPI Version: `2018-09-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000593", + "sortText": "0000052d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HealthcareApis/services@2020-03-15'" + "newText": "'Microsoft.EventGrid/eventSubscriptions@2018-09-15-preview'" } }, { - "label": "'Microsoft.HealthcareApis/services@2020-03-30'", + "label": "'Microsoft.EventGrid/eventSubscriptions@2019-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HealthcareApis` \nType: `services` \nAPI Version: `2020-03-30`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `eventSubscriptions` \nAPI Version: `2019-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000592", + "sortText": "0000052c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HealthcareApis/services@2020-03-30'" + "newText": "'Microsoft.EventGrid/eventSubscriptions@2019-01-01'" } }, { - "label": "'Microsoft.HybridCompute/machines/extensions@2019-08-02-preview'", + "label": "'Microsoft.EventGrid/eventSubscriptions@2019-02-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HybridCompute` \nType: `machines/extensions` \nAPI Version: `2019-08-02-preview`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `eventSubscriptions` \nAPI Version: `2019-02-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005a1", + "sortText": "0000052b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HybridCompute/machines/extensions@2019-08-02-preview'" + "newText": "'Microsoft.EventGrid/eventSubscriptions@2019-02-01-preview'" } }, { - "label": "'Microsoft.HybridCompute/machines/extensions@2019-12-12'", + "label": "'Microsoft.EventGrid/eventSubscriptions@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HybridCompute` \nType: `machines/extensions` \nAPI Version: `2019-12-12`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `eventSubscriptions` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000005a0", + "sortText": "0000052a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HybridCompute/machines/extensions@2019-12-12'" + "newText": "'Microsoft.EventGrid/eventSubscriptions@2019-06-01'" } }, { - "label": "'Microsoft.HybridCompute/machines/extensions@2020-07-30-preview'", + "label": "'Microsoft.EventGrid/eventSubscriptions@2020-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HybridCompute` \nType: `machines/extensions` \nAPI Version: `2020-07-30-preview`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `eventSubscriptions` \nAPI Version: `2020-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000059f", + "sortText": "00000529", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HybridCompute/machines/extensions@2020-07-30-preview'" + "newText": "'Microsoft.EventGrid/eventSubscriptions@2020-01-01-preview'" } }, { - "label": "'Microsoft.HybridCompute/machines/extensions@2020-08-02'", + "label": "'Microsoft.EventGrid/eventSubscriptions@2020-04-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HybridCompute` \nType: `machines/extensions` \nAPI Version: `2020-08-02`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `eventSubscriptions` \nAPI Version: `2020-04-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000059e", + "sortText": "00000528", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HybridCompute/machines/extensions@2020-08-02'" + "newText": "'Microsoft.EventGrid/eventSubscriptions@2020-04-01-preview'" } }, { - "label": "'Microsoft.HybridCompute/machines/extensions@2020-08-15-preview'", + "label": "'Microsoft.EventGrid/eventSubscriptions@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HybridCompute` \nType: `machines/extensions` \nAPI Version: `2020-08-15-preview`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `eventSubscriptions` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000059d", + "sortText": "00000527", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HybridCompute/machines/extensions@2020-08-15-preview'" + "newText": "'Microsoft.EventGrid/eventSubscriptions@2020-06-01'" } }, { - "label": "'Microsoft.HybridCompute/machines@2019-03-18-preview'", + "label": "'Microsoft.EventGrid/partnerNamespaces/eventChannels@2020-04-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HybridCompute` \nType: `machines` \nAPI Version: `2019-03-18-preview`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `partnerNamespaces/eventChannels` \nAPI Version: `2020-04-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000059c", + "sortText": "00000533", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HybridCompute/machines@2019-03-18-preview'" + "newText": "'Microsoft.EventGrid/partnerNamespaces/eventChannels@2020-04-01-preview'" } }, { - "label": "'Microsoft.HybridCompute/machines@2019-08-02-preview'", + "label": "'Microsoft.EventGrid/partnerNamespaces@2020-04-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HybridCompute` \nType: `machines` \nAPI Version: `2019-08-02-preview`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `partnerNamespaces` \nAPI Version: `2020-04-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000059b", + "sortText": "00000532", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HybridCompute/machines@2019-08-02-preview'" + "newText": "'Microsoft.EventGrid/partnerNamespaces@2020-04-01-preview'" } }, { - "label": "'Microsoft.HybridCompute/machines@2019-12-12'", + "label": "'Microsoft.EventGrid/partnerRegistrations@2020-04-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HybridCompute` \nType: `machines` \nAPI Version: `2019-12-12`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `partnerRegistrations` \nAPI Version: `2020-04-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000059a", + "sortText": "00000534", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HybridCompute/machines@2019-12-12'" + "newText": "'Microsoft.EventGrid/partnerRegistrations@2020-04-01-preview'" } }, { - "label": "'Microsoft.HybridCompute/machines@2020-07-30-preview'", + "label": "'Microsoft.EventGrid/partnerTopics/eventSubscriptions@2020-04-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HybridCompute` \nType: `machines` \nAPI Version: `2020-07-30-preview`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `partnerTopics/eventSubscriptions` \nAPI Version: `2020-04-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000599", + "sortText": "00000535", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HybridCompute/machines@2020-07-30-preview'" + "newText": "'Microsoft.EventGrid/partnerTopics/eventSubscriptions@2020-04-01-preview'" } }, { - "label": "'Microsoft.HybridCompute/machines@2020-08-02'", + "label": "'Microsoft.EventGrid/systemTopics/eventSubscriptions@2020-04-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HybridCompute` \nType: `machines` \nAPI Version: `2020-08-02`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `systemTopics/eventSubscriptions` \nAPI Version: `2020-04-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000598", + "sortText": "00000537", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HybridCompute/machines@2020-08-02'" + "newText": "'Microsoft.EventGrid/systemTopics/eventSubscriptions@2020-04-01-preview'" } }, { - "label": "'Microsoft.HybridCompute/machines@2020-08-15-preview'", + "label": "'Microsoft.EventGrid/systemTopics@2020-04-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HybridCompute` \nType: `machines` \nAPI Version: `2020-08-15-preview`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `systemTopics` \nAPI Version: `2020-04-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000597", + "sortText": "00000536", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HybridCompute/machines@2020-08-15-preview'" + "newText": "'Microsoft.EventGrid/systemTopics@2020-04-01-preview'" } }, { - "label": "'Microsoft.HybridCompute/privateLinkScopes/privateEndpointConnections@2020-08-15-preview'", + "label": "'Microsoft.EventGrid/topics/privateEndpointConnections@2020-04-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HybridCompute` \nType: `privateLinkScopes/privateEndpointConnections` \nAPI Version: `2020-08-15-preview`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `topics/privateEndpointConnections` \nAPI Version: `2020-04-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005a3", + "sortText": "00000544", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HybridCompute/privateLinkScopes/privateEndpointConnections@2020-08-15-preview'" + "newText": "'Microsoft.EventGrid/topics/privateEndpointConnections@2020-04-01-preview'" } }, { - "label": "'Microsoft.HybridCompute/privateLinkScopes/scopedResources@2020-08-15-preview'", + "label": "'Microsoft.EventGrid/topics/privateEndpointConnections@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HybridCompute` \nType: `privateLinkScopes/scopedResources` \nAPI Version: `2020-08-15-preview`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `topics/privateEndpointConnections` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000005a4", + "sortText": "00000543", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HybridCompute/privateLinkScopes/scopedResources@2020-08-15-preview'" + "newText": "'Microsoft.EventGrid/topics/privateEndpointConnections@2020-06-01'" } }, { - "label": "'Microsoft.HybridCompute/privateLinkScopes@2020-08-15-preview'", + "label": "'Microsoft.EventGrid/topics@2017-06-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HybridCompute` \nType: `privateLinkScopes` \nAPI Version: `2020-08-15-preview`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `topics` \nAPI Version: `2017-06-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005a2", + "sortText": "00000542", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HybridCompute/privateLinkScopes@2020-08-15-preview'" + "newText": "'Microsoft.EventGrid/topics@2017-06-15-preview'" } }, { - "label": "'Microsoft.HybridData/dataManagers/dataServices/jobDefinitions@2016-06-01'", + "label": "'Microsoft.EventGrid/topics@2017-09-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HybridData` \nType: `dataManagers/dataServices/jobDefinitions` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `topics` \nAPI Version: `2017-09-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005a8", + "sortText": "00000541", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HybridData/dataManagers/dataServices/jobDefinitions@2016-06-01'" + "newText": "'Microsoft.EventGrid/topics@2017-09-15-preview'" } }, { - "label": "'Microsoft.HybridData/dataManagers/dataServices/jobDefinitions@2019-06-01'", + "label": "'Microsoft.EventGrid/topics@2018-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HybridData` \nType: `dataManagers/dataServices/jobDefinitions` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `topics` \nAPI Version: `2018-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "000005a7", + "sortText": "00000540", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HybridData/dataManagers/dataServices/jobDefinitions@2019-06-01'" + "newText": "'Microsoft.EventGrid/topics@2018-01-01'" } }, { - "label": "'Microsoft.HybridData/dataManagers/dataStores@2016-06-01'", + "label": "'Microsoft.EventGrid/topics@2018-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HybridData` \nType: `dataManagers/dataStores` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `topics` \nAPI Version: `2018-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005aa", + "sortText": "0000053f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HybridData/dataManagers/dataStores@2016-06-01'" + "newText": "'Microsoft.EventGrid/topics@2018-05-01-preview'" } }, { - "label": "'Microsoft.HybridData/dataManagers/dataStores@2019-06-01'", + "label": "'Microsoft.EventGrid/topics@2018-09-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HybridData` \nType: `dataManagers/dataStores` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `topics` \nAPI Version: `2018-09-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005a9", + "sortText": "0000053e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HybridData/dataManagers/dataStores@2019-06-01'" + "newText": "'Microsoft.EventGrid/topics@2018-09-15-preview'" } }, { - "label": "'Microsoft.HybridData/dataManagers@2016-06-01'", + "label": "'Microsoft.EventGrid/topics@2019-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HybridData` \nType: `dataManagers` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `topics` \nAPI Version: `2019-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "000005a6", + "sortText": "0000053d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HybridData/dataManagers@2016-06-01'" + "newText": "'Microsoft.EventGrid/topics@2019-01-01'" } }, { - "label": "'Microsoft.HybridData/dataManagers@2019-06-01'", + "label": "'Microsoft.EventGrid/topics@2019-02-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HybridData` \nType: `dataManagers` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `topics` \nAPI Version: `2019-02-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005a5", + "sortText": "0000053c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HybridData/dataManagers@2019-06-01'" + "newText": "'Microsoft.EventGrid/topics@2019-02-01-preview'" } }, { - "label": "'Microsoft.HybridNetwork/devices@2020-01-01-preview'", + "label": "'Microsoft.EventGrid/topics@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HybridNetwork` \nType: `devices` \nAPI Version: `2020-01-01-preview`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `topics` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000005ab", + "sortText": "0000053b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HybridNetwork/devices@2020-01-01-preview'" + "newText": "'Microsoft.EventGrid/topics@2019-06-01'" } }, { - "label": "'Microsoft.HybridNetwork/locations/vendors/networkFunctions@2020-01-01-preview'", + "label": "'Microsoft.EventGrid/topics@2020-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HybridNetwork` \nType: `locations/vendors/networkFunctions` \nAPI Version: `2020-01-01-preview`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `topics` \nAPI Version: `2020-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005ac", + "sortText": "0000053a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HybridNetwork/locations/vendors/networkFunctions@2020-01-01-preview'" + "newText": "'Microsoft.EventGrid/topics@2020-01-01-preview'" } }, { - "label": "'Microsoft.HybridNetwork/networkFunctions@2020-01-01-preview'", + "label": "'Microsoft.EventGrid/topics@2020-04-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HybridNetwork` \nType: `networkFunctions` \nAPI Version: `2020-01-01-preview`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `topics` \nAPI Version: `2020-04-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005ad", + "sortText": "00000539", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HybridNetwork/networkFunctions@2020-01-01-preview'" + "newText": "'Microsoft.EventGrid/topics@2020-04-01-preview'" } }, { - "label": "'Microsoft.HybridNetwork/vendors/vendorSkus/previewSubscriptions@2020-01-01-preview'", + "label": "'Microsoft.EventGrid/topics@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HybridNetwork` \nType: `vendors/vendorSkus/previewSubscriptions` \nAPI Version: `2020-01-01-preview`" + "value": "Namespace: `Microsoft.EventGrid` \nType: `topics` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000005b0", + "sortText": "00000538", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HybridNetwork/vendors/vendorSkus/previewSubscriptions@2020-01-01-preview'" + "newText": "'Microsoft.EventGrid/topics@2020-06-01'" } }, { - "label": "'Microsoft.HybridNetwork/vendors/vendorSkus@2020-01-01-preview'", + "label": "'Microsoft.EventHub/clusters@2018-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HybridNetwork` \nType: `vendors/vendorSkus` \nAPI Version: `2020-01-01-preview`" + "value": "Namespace: `Microsoft.EventHub` \nType: `clusters` \nAPI Version: `2018-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005af", + "sortText": "00000545", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HybridNetwork/vendors/vendorSkus@2020-01-01-preview'" + "newText": "'Microsoft.EventHub/clusters@2018-01-01-preview'" } }, { - "label": "'Microsoft.HybridNetwork/vendors@2020-01-01-preview'", + "label": "'Microsoft.EventHub/namespaces/AuthorizationRules@2014-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.HybridNetwork` \nType: `vendors` \nAPI Version: `2020-01-01-preview`" + "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/AuthorizationRules` \nAPI Version: `2014-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000005ae", + "sortText": "0000054c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.HybridNetwork/vendors@2020-01-01-preview'" + "newText": "'Microsoft.EventHub/namespaces/AuthorizationRules@2014-09-01'" } }, { - "label": "'Microsoft.ImportExport/jobs@2016-11-01'", + "label": "'Microsoft.EventHub/namespaces/AuthorizationRules@2015-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ImportExport` \nType: `jobs` \nAPI Version: `2016-11-01`" + "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/AuthorizationRules` \nAPI Version: `2015-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000005b2", + "sortText": "0000054b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ImportExport/jobs@2016-11-01'" + "newText": "'Microsoft.EventHub/namespaces/AuthorizationRules@2015-08-01'" } }, { - "label": "'Microsoft.ImportExport/jobs@2020-08-01'", + "label": "'Microsoft.EventHub/namespaces/authorizationRules@2017-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ImportExport` \nType: `jobs` \nAPI Version: `2020-08-01`" + "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/authorizationRules` \nAPI Version: `2017-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000005b1", + "sortText": "0000054a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ImportExport/jobs@2020-08-01'" + "newText": "'Microsoft.EventHub/namespaces/authorizationRules@2017-04-01'" } }, { - "label": "'Microsoft.InfrastructureInsights.Admin/regionHealths/alerts@2016-05-01'", + "label": "'Microsoft.EventHub/namespaces/disasterRecoveryConfigs@2017-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.InfrastructureInsights.Admin` \nType: `regionHealths/alerts` \nAPI Version: `2016-05-01`" + "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/disasterRecoveryConfigs` \nAPI Version: `2017-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000005b3", + "sortText": "0000054d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.InfrastructureInsights.Admin/regionHealths/alerts@2016-05-01'" + "newText": "'Microsoft.EventHub/namespaces/disasterRecoveryConfigs@2017-04-01'" } }, { - "label": "'Microsoft.Insights/components/ProactiveDetectionConfigs@2015-05-01'", + "label": "'Microsoft.EventHub/namespaces/eventhubs/authorizationRules@2014-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Insights` \nType: `components/ProactiveDetectionConfigs` \nAPI Version: `2015-05-01`" + "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/eventhubs/authorizationRules` \nAPI Version: `2014-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000005c7", + "sortText": "00000553", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Insights/components/ProactiveDetectionConfigs@2015-05-01'" + "newText": "'Microsoft.EventHub/namespaces/eventhubs/authorizationRules@2014-09-01'" } }, { - "label": "'Microsoft.Insights/components/ProactiveDetectionConfigs@2018-05-01-preview'", + "label": "'Microsoft.EventHub/namespaces/eventhubs/authorizationRules@2015-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Insights` \nType: `components/ProactiveDetectionConfigs` \nAPI Version: `2018-05-01-preview`" + "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/eventhubs/authorizationRules` \nAPI Version: `2015-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000005c6", + "sortText": "00000552", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Insights/components/ProactiveDetectionConfigs@2018-05-01-preview'" + "newText": "'Microsoft.EventHub/namespaces/eventhubs/authorizationRules@2015-08-01'" } }, { - "label": "'Microsoft.Insights/components/exportconfiguration@2015-05-01'", + "label": "'Microsoft.EventHub/namespaces/eventhubs/authorizationRules@2017-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Insights` \nType: `components/exportconfiguration` \nAPI Version: `2015-05-01`" + "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/eventhubs/authorizationRules` \nAPI Version: `2017-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000005c1", + "sortText": "00000551", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Insights/components/exportconfiguration@2015-05-01'" + "newText": "'Microsoft.EventHub/namespaces/eventhubs/authorizationRules@2017-04-01'" } }, { - "label": "'Microsoft.Insights/components/favorites@2015-05-01'", + "label": "'Microsoft.EventHub/namespaces/eventhubs/consumergroups@2014-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Insights` \nType: `components/favorites` \nAPI Version: `2015-05-01`" + "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/eventhubs/consumergroups` \nAPI Version: `2014-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000005c2", + "sortText": "00000556", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Insights/components/favorites@2015-05-01'" + "newText": "'Microsoft.EventHub/namespaces/eventhubs/consumergroups@2014-09-01'" } }, { - "label": "'Microsoft.Insights/components@2015-05-01'", + "label": "'Microsoft.EventHub/namespaces/eventhubs/consumergroups@2015-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Insights` \nType: `components` \nAPI Version: `2015-05-01`" + "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/eventhubs/consumergroups` \nAPI Version: `2015-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000005bf", + "sortText": "00000555", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Insights/components@2015-05-01'" + "newText": "'Microsoft.EventHub/namespaces/eventhubs/consumergroups@2015-08-01'" } }, { - "label": "'Microsoft.Insights/components@2018-05-01-preview'", + "label": "'Microsoft.EventHub/namespaces/eventhubs/consumergroups@2017-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Insights` \nType: `components` \nAPI Version: `2018-05-01-preview`" + "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/eventhubs/consumergroups` \nAPI Version: `2017-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000005be", + "sortText": "00000554", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Insights/components@2018-05-01-preview'" + "newText": "'Microsoft.EventHub/namespaces/eventhubs/consumergroups@2017-04-01'" } }, { - "label": "'Microsoft.Insights/components@2020-02-02-preview'", + "label": "'Microsoft.EventHub/namespaces/eventhubs@2014-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Insights` \nType: `components` \nAPI Version: `2020-02-02-preview`" + "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/eventhubs` \nAPI Version: `2014-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000005bd", + "sortText": "00000550", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Insights/components@2020-02-02-preview'" + "newText": "'Microsoft.EventHub/namespaces/eventhubs@2014-09-01'" } }, { - "label": "'Microsoft.Insights/dataCollectionRuleAssociations@2019-11-01-preview'", + "label": "'Microsoft.EventHub/namespaces/eventhubs@2015-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Insights` \nType: `dataCollectionRuleAssociations` \nAPI Version: `2019-11-01-preview`" + "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/eventhubs` \nAPI Version: `2015-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000005c8", + "sortText": "0000054f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Insights/dataCollectionRuleAssociations@2019-11-01-preview'" + "newText": "'Microsoft.EventHub/namespaces/eventhubs@2015-08-01'" } }, { - "label": "'Microsoft.Insights/dataCollectionRules@2019-11-01-preview'", + "label": "'Microsoft.EventHub/namespaces/eventhubs@2017-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Insights` \nType: `dataCollectionRules` \nAPI Version: `2019-11-01-preview`" + "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/eventhubs` \nAPI Version: `2017-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000005c9", + "sortText": "0000054e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Insights/dataCollectionRules@2019-11-01-preview'" + "newText": "'Microsoft.EventHub/namespaces/eventhubs@2017-04-01'" } }, { - "label": "'Microsoft.Insights/metricAlerts@2018-03-01'", + "label": "'Microsoft.EventHub/namespaces/ipfilterrules@2018-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Insights` \nType: `metricAlerts` \nAPI Version: `2018-03-01`" + "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/ipfilterrules` \nAPI Version: `2018-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005d1", + "sortText": "00000557", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Insights/metricAlerts@2018-03-01'" + "newText": "'Microsoft.EventHub/namespaces/ipfilterrules@2018-01-01-preview'" } }, { - "label": "'Microsoft.Insights/myWorkbooks@2015-05-01'", + "label": "'Microsoft.EventHub/namespaces/networkRuleSets@2017-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Insights` \nType: `myWorkbooks` \nAPI Version: `2015-05-01`" + "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/networkRuleSets` \nAPI Version: `2017-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000005d2", + "sortText": "00000559", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Insights/myWorkbooks@2015-05-01'" + "newText": "'Microsoft.EventHub/namespaces/networkRuleSets@2017-04-01'" } }, { - "label": "'Microsoft.Insights/privateLinkScopes/privateEndpointConnections@2019-10-17-preview'", + "label": "'Microsoft.EventHub/namespaces/networkRuleSets@2018-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Insights` \nType: `privateLinkScopes/privateEndpointConnections` \nAPI Version: `2019-10-17-preview`" + "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/networkRuleSets` \nAPI Version: `2018-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005d4", + "sortText": "00000558", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Insights/privateLinkScopes/privateEndpointConnections@2019-10-17-preview'" + "newText": "'Microsoft.EventHub/namespaces/networkRuleSets@2018-01-01-preview'" } }, { - "label": "'Microsoft.Insights/privateLinkScopes/scopedResources@2019-10-17-preview'", + "label": "'Microsoft.EventHub/namespaces/privateEndpointConnections@2018-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Insights` \nType: `privateLinkScopes/scopedResources` \nAPI Version: `2019-10-17-preview`" + "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/privateEndpointConnections` \nAPI Version: `2018-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005d5", + "sortText": "0000055a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Insights/privateLinkScopes/scopedResources@2019-10-17-preview'" + "newText": "'Microsoft.EventHub/namespaces/privateEndpointConnections@2018-01-01-preview'" } }, { - "label": "'Microsoft.Insights/scheduledQueryRules@2020-05-01-preview'", + "label": "'Microsoft.EventHub/namespaces/virtualnetworkrules@2018-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Insights` \nType: `scheduledQueryRules` \nAPI Version: `2020-05-01-preview`" + "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces/virtualnetworkrules` \nAPI Version: `2018-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005d6", + "sortText": "0000055b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Insights/scheduledQueryRules@2020-05-01-preview'" + "newText": "'Microsoft.EventHub/namespaces/virtualnetworkrules@2018-01-01-preview'" } }, { - "label": "'Microsoft.Insights/webtests@2015-05-01'", + "label": "'Microsoft.EventHub/namespaces@2014-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Insights` \nType: `webtests` \nAPI Version: `2015-05-01`" + "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces` \nAPI Version: `2014-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000005d8", + "sortText": "00000549", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Insights/webtests@2015-05-01'" + "newText": "'Microsoft.EventHub/namespaces@2014-09-01'" } }, { - "label": "'Microsoft.Intune/locations/androidPolicies/apps@2015-01-14-preview'", + "label": "'Microsoft.EventHub/namespaces@2015-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Intune` \nType: `locations/androidPolicies/apps` \nAPI Version: `2015-01-14-preview`" + "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces` \nAPI Version: `2015-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000005dd", + "sortText": "00000548", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Intune/locations/androidPolicies/apps@2015-01-14-preview'" + "newText": "'Microsoft.EventHub/namespaces@2015-08-01'" } }, { - "label": "'Microsoft.Intune/locations/androidPolicies/groups@2015-01-14-preview'", + "label": "'Microsoft.EventHub/namespaces@2017-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Intune` \nType: `locations/androidPolicies/groups` \nAPI Version: `2015-01-14-preview`" + "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces` \nAPI Version: `2017-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000005de", + "sortText": "00000547", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Intune/locations/androidPolicies/groups@2015-01-14-preview'" + "newText": "'Microsoft.EventHub/namespaces@2017-04-01'" } }, { - "label": "'Microsoft.Intune/locations/androidPolicies@2015-01-14-preview'", + "label": "'Microsoft.EventHub/namespaces@2018-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Intune` \nType: `locations/androidPolicies` \nAPI Version: `2015-01-14-preview`" + "value": "Namespace: `Microsoft.EventHub` \nType: `namespaces` \nAPI Version: `2018-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005dc", + "sortText": "00000546", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Intune/locations/androidPolicies@2015-01-14-preview'" + "newText": "'Microsoft.EventHub/namespaces@2018-01-01-preview'" } }, { - "label": "'Microsoft.Intune/locations/iosPolicies/apps@2015-01-14-preview'", + "label": "'Microsoft.HDInsight/clusters/applications@2015-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Intune` \nType: `locations/iosPolicies/apps` \nAPI Version: `2015-01-14-preview`" + "value": "Namespace: `Microsoft.HDInsight` \nType: `clusters/applications` \nAPI Version: `2015-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005e0", + "sortText": "00000564", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Intune/locations/iosPolicies/apps@2015-01-14-preview'" + "newText": "'Microsoft.HDInsight/clusters/applications@2015-03-01-preview'" } }, { - "label": "'Microsoft.Intune/locations/iosPolicies/groups@2015-01-14-preview'", + "label": "'Microsoft.HDInsight/clusters/applications@2018-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Intune` \nType: `locations/iosPolicies/groups` \nAPI Version: `2015-01-14-preview`" + "value": "Namespace: `Microsoft.HDInsight` \nType: `clusters/applications` \nAPI Version: `2018-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005e1", + "sortText": "00000563", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Intune/locations/iosPolicies/groups@2015-01-14-preview'" + "newText": "'Microsoft.HDInsight/clusters/applications@2018-06-01-preview'" } }, { - "label": "'Microsoft.Intune/locations/iosPolicies@2015-01-14-preview'", + "label": "'Microsoft.HDInsight/clusters@2015-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Intune` \nType: `locations/iosPolicies` \nAPI Version: `2015-01-14-preview`" + "value": "Namespace: `Microsoft.HDInsight` \nType: `clusters` \nAPI Version: `2015-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005df", + "sortText": "00000562", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Intune/locations/iosPolicies@2015-01-14-preview'" + "newText": "'Microsoft.HDInsight/clusters@2015-03-01-preview'" } }, { - "label": "'Microsoft.IoTCentral/IoTApps@2018-09-01'", + "label": "'Microsoft.HDInsight/clusters@2018-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.IoTCentral` \nType: `IoTApps` \nAPI Version: `2018-09-01`" + "value": "Namespace: `Microsoft.HDInsight` \nType: `clusters` \nAPI Version: `2018-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005e2", + "sortText": "00000561", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.IoTCentral/IoTApps@2018-09-01'" + "newText": "'Microsoft.HDInsight/clusters@2018-06-01-preview'" } }, { - "label": "'Microsoft.IoTSpaces/Graph@2017-10-01-preview'", + "label": "'Microsoft.HanaOnAzure/hanaInstances@2017-11-03-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.IoTSpaces` \nType: `Graph` \nAPI Version: `2017-10-01-preview`" + "value": "Namespace: `Microsoft.HanaOnAzure` \nType: `hanaInstances` \nAPI Version: `2017-11-03-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005e3", + "sortText": "0000055c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.IoTSpaces/Graph@2017-10-01-preview'" + "newText": "'Microsoft.HanaOnAzure/hanaInstances@2017-11-03-preview'" } }, { - "label": "'Microsoft.KeyVault/managedHSMs@2020-04-01-preview'", + "label": "'Microsoft.HanaOnAzure/sapMonitors/providerInstances@2020-02-07-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `managedHSMs` \nAPI Version: `2020-04-01-preview`" + "value": "Namespace: `Microsoft.HanaOnAzure` \nType: `sapMonitors/providerInstances` \nAPI Version: `2020-02-07-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005e4", + "sortText": "0000055f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/managedHSMs@2020-04-01-preview'" + "newText": "'Microsoft.HanaOnAzure/sapMonitors/providerInstances@2020-02-07-preview'" } }, { - "label": "'Microsoft.KeyVault/vaults/accessPolicies@2016-10-01'", + "label": "'Microsoft.HanaOnAzure/sapMonitors@2017-11-03-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/accessPolicies` \nAPI Version: `2016-10-01`" + "value": "Namespace: `Microsoft.HanaOnAzure` \nType: `sapMonitors` \nAPI Version: `2017-11-03-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005ef", + "sortText": "0000055e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/vaults/accessPolicies@2016-10-01'" + "newText": "'Microsoft.HanaOnAzure/sapMonitors@2017-11-03-preview'" } }, { - "label": "'Microsoft.KeyVault/vaults/accessPolicies@2018-02-14'", + "label": "'Microsoft.HanaOnAzure/sapMonitors@2020-02-07-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/accessPolicies` \nAPI Version: `2018-02-14`" + "value": "Namespace: `Microsoft.HanaOnAzure` \nType: `sapMonitors` \nAPI Version: `2020-02-07-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005ee", + "sortText": "0000055d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/vaults/accessPolicies@2018-02-14'" + "newText": "'Microsoft.HanaOnAzure/sapMonitors@2020-02-07-preview'" } }, { - "label": "'Microsoft.KeyVault/vaults/accessPolicies@2018-02-14-preview'", + "label": "'Microsoft.HardwareSecurityModules/dedicatedHSMs@2018-10-31-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/accessPolicies` \nAPI Version: `2018-02-14-preview`" + "value": "Namespace: `Microsoft.HardwareSecurityModules` \nType: `dedicatedHSMs` \nAPI Version: `2018-10-31-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005ed", + "sortText": "00000560", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/vaults/accessPolicies@2018-02-14-preview'" + "newText": "'Microsoft.HardwareSecurityModules/dedicatedHSMs@2018-10-31-preview'" } }, { - "label": "'Microsoft.KeyVault/vaults/accessPolicies@2019-09-01'", + "label": "'Microsoft.HealthBot/healthBots@2020-12-08'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/accessPolicies` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.HealthBot` \nType: `healthBots` \nAPI Version: `2020-12-08`" }, "deprecated": false, "preselect": false, - "sortText": "000005ec", + "sortText": "00000565", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/vaults/accessPolicies@2019-09-01'" + "newText": "'Microsoft.HealthBot/healthBots@2020-12-08'" } }, { - "label": "'Microsoft.KeyVault/vaults/accessPolicies@2020-04-01-preview'", + "label": "'Microsoft.HealthcareApis/services/privateEndpointConnections@2020-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/accessPolicies` \nAPI Version: `2020-04-01-preview`" + "value": "Namespace: `Microsoft.HealthcareApis` \nType: `services/privateEndpointConnections` \nAPI Version: `2020-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "000005eb", + "sortText": "0000056a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/vaults/accessPolicies@2020-04-01-preview'" + "newText": "'Microsoft.HealthcareApis/services/privateEndpointConnections@2020-03-30'" } }, { - "label": "'Microsoft.KeyVault/vaults/keys@2019-09-01'", + "label": "'Microsoft.HealthcareApis/services@2018-08-20-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/keys` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.HealthcareApis` \nType: `services` \nAPI Version: `2018-08-20-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005f0", + "sortText": "00000569", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/vaults/keys@2019-09-01'" + "newText": "'Microsoft.HealthcareApis/services@2018-08-20-preview'" } }, { - "label": "'Microsoft.KeyVault/vaults/privateEndpointConnections@2018-02-14'", + "label": "'Microsoft.HealthcareApis/services@2019-09-16'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/privateEndpointConnections` \nAPI Version: `2018-02-14`" + "value": "Namespace: `Microsoft.HealthcareApis` \nType: `services` \nAPI Version: `2019-09-16`" }, "deprecated": false, "preselect": false, - "sortText": "000005f3", + "sortText": "00000568", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/vaults/privateEndpointConnections@2018-02-14'" + "newText": "'Microsoft.HealthcareApis/services@2019-09-16'" } }, { - "label": "'Microsoft.KeyVault/vaults/privateEndpointConnections@2019-09-01'", + "label": "'Microsoft.HealthcareApis/services@2020-03-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/privateEndpointConnections` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.HealthcareApis` \nType: `services` \nAPI Version: `2020-03-15`" }, "deprecated": false, "preselect": false, - "sortText": "000005f2", + "sortText": "00000567", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/vaults/privateEndpointConnections@2019-09-01'" + "newText": "'Microsoft.HealthcareApis/services@2020-03-15'" } }, { - "label": "'Microsoft.KeyVault/vaults/privateEndpointConnections@2020-04-01-preview'", + "label": "'Microsoft.HealthcareApis/services@2020-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/privateEndpointConnections` \nAPI Version: `2020-04-01-preview`" + "value": "Namespace: `Microsoft.HealthcareApis` \nType: `services` \nAPI Version: `2020-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "000005f1", + "sortText": "00000566", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/vaults/privateEndpointConnections@2020-04-01-preview'" + "newText": "'Microsoft.HealthcareApis/services@2020-03-30'" } }, { - "label": "'Microsoft.KeyVault/vaults/secrets@2016-10-01'", + "label": "'Microsoft.HybridCompute/machines/extensions@2019-08-02-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/secrets` \nAPI Version: `2016-10-01`" + "value": "Namespace: `Microsoft.HybridCompute` \nType: `machines/extensions` \nAPI Version: `2019-08-02-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005f8", + "sortText": "00000575", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/vaults/secrets@2016-10-01'" + "newText": "'Microsoft.HybridCompute/machines/extensions@2019-08-02-preview'" } }, { - "label": "'Microsoft.KeyVault/vaults/secrets@2018-02-14'", + "label": "'Microsoft.HybridCompute/machines/extensions@2019-12-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/secrets` \nAPI Version: `2018-02-14`" + "value": "Namespace: `Microsoft.HybridCompute` \nType: `machines/extensions` \nAPI Version: `2019-12-12`" }, "deprecated": false, "preselect": false, - "sortText": "000005f7", + "sortText": "00000574", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/vaults/secrets@2018-02-14'" + "newText": "'Microsoft.HybridCompute/machines/extensions@2019-12-12'" } }, { - "label": "'Microsoft.KeyVault/vaults/secrets@2018-02-14-preview'", + "label": "'Microsoft.HybridCompute/machines/extensions@2020-07-30-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/secrets` \nAPI Version: `2018-02-14-preview`" + "value": "Namespace: `Microsoft.HybridCompute` \nType: `machines/extensions` \nAPI Version: `2020-07-30-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005f6", + "sortText": "00000573", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/vaults/secrets@2018-02-14-preview'" + "newText": "'Microsoft.HybridCompute/machines/extensions@2020-07-30-preview'" } }, { - "label": "'Microsoft.KeyVault/vaults/secrets@2019-09-01'", + "label": "'Microsoft.HybridCompute/machines/extensions@2020-08-02'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/secrets` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.HybridCompute` \nType: `machines/extensions` \nAPI Version: `2020-08-02`" }, "deprecated": false, "preselect": false, - "sortText": "000005f5", + "sortText": "00000572", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/vaults/secrets@2019-09-01'" + "newText": "'Microsoft.HybridCompute/machines/extensions@2020-08-02'" } }, { - "label": "'Microsoft.KeyVault/vaults/secrets@2020-04-01-preview'", + "label": "'Microsoft.HybridCompute/machines/extensions@2020-08-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/secrets` \nAPI Version: `2020-04-01-preview`" + "value": "Namespace: `Microsoft.HybridCompute` \nType: `machines/extensions` \nAPI Version: `2020-08-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005f4", + "sortText": "00000571", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/vaults/secrets@2020-04-01-preview'" + "newText": "'Microsoft.HybridCompute/machines/extensions@2020-08-15-preview'" } }, { - "label": "'Microsoft.KeyVault/vaults@2015-06-01'", + "label": "'Microsoft.HybridCompute/machines@2019-03-18-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults` \nAPI Version: `2015-06-01`" + "value": "Namespace: `Microsoft.HybridCompute` \nType: `machines` \nAPI Version: `2019-03-18-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005ea", + "sortText": "00000570", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/vaults@2015-06-01'" + "newText": "'Microsoft.HybridCompute/machines@2019-03-18-preview'" } }, { - "label": "'Microsoft.KeyVault/vaults@2016-10-01'", + "label": "'Microsoft.HybridCompute/machines@2019-08-02-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults` \nAPI Version: `2016-10-01`" + "value": "Namespace: `Microsoft.HybridCompute` \nType: `machines` \nAPI Version: `2019-08-02-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005e9", + "sortText": "0000056f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/vaults@2016-10-01'" + "newText": "'Microsoft.HybridCompute/machines@2019-08-02-preview'" } }, { - "label": "'Microsoft.KeyVault/vaults@2018-02-14'", + "label": "'Microsoft.HybridCompute/machines@2019-12-12'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults` \nAPI Version: `2018-02-14`" + "value": "Namespace: `Microsoft.HybridCompute` \nType: `machines` \nAPI Version: `2019-12-12`" }, "deprecated": false, "preselect": false, - "sortText": "000005e8", + "sortText": "0000056e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/vaults@2018-02-14'" + "newText": "'Microsoft.HybridCompute/machines@2019-12-12'" } }, { - "label": "'Microsoft.KeyVault/vaults@2018-02-14-preview'", + "label": "'Microsoft.HybridCompute/machines@2020-07-30-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults` \nAPI Version: `2018-02-14-preview`" + "value": "Namespace: `Microsoft.HybridCompute` \nType: `machines` \nAPI Version: `2020-07-30-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005e7", + "sortText": "0000056d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/vaults@2018-02-14-preview'" + "newText": "'Microsoft.HybridCompute/machines@2020-07-30-preview'" } }, { - "label": "'Microsoft.KeyVault/vaults@2019-09-01'", + "label": "'Microsoft.HybridCompute/machines@2020-08-02'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.HybridCompute` \nType: `machines` \nAPI Version: `2020-08-02`" }, "deprecated": false, "preselect": false, - "sortText": "000005e6", + "sortText": "0000056c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/vaults@2019-09-01'" + "newText": "'Microsoft.HybridCompute/machines@2020-08-02'" } }, { - "label": "'Microsoft.KeyVault/vaults@2020-04-01-preview'", + "label": "'Microsoft.HybridCompute/machines@2020-08-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults` \nAPI Version: `2020-04-01-preview`" + "value": "Namespace: `Microsoft.HybridCompute` \nType: `machines` \nAPI Version: `2020-08-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005e5", + "sortText": "0000056b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KeyVault/vaults@2020-04-01-preview'" + "newText": "'Microsoft.HybridCompute/machines@2020-08-15-preview'" } }, { - "label": "'Microsoft.Kubernetes/connectedClusters@2020-01-01-preview'", + "label": "'Microsoft.HybridCompute/privateLinkScopes/privateEndpointConnections@2020-08-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kubernetes` \nType: `connectedClusters` \nAPI Version: `2020-01-01-preview`" + "value": "Namespace: `Microsoft.HybridCompute` \nType: `privateLinkScopes/privateEndpointConnections` \nAPI Version: `2020-08-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005f9", + "sortText": "00000577", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kubernetes/connectedClusters@2020-01-01-preview'" + "newText": "'Microsoft.HybridCompute/privateLinkScopes/privateEndpointConnections@2020-08-15-preview'" } }, { - "label": "'Microsoft.KubernetesConfiguration/sourceControlConfigurations@2019-11-01-preview'", + "label": "'Microsoft.HybridCompute/privateLinkScopes/scopedResources@2020-08-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.KubernetesConfiguration` \nType: `sourceControlConfigurations` \nAPI Version: `2019-11-01-preview`" + "value": "Namespace: `Microsoft.HybridCompute` \nType: `privateLinkScopes/scopedResources` \nAPI Version: `2020-08-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005fa", + "sortText": "00000578", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.KubernetesConfiguration/sourceControlConfigurations@2019-11-01-preview'" + "newText": "'Microsoft.HybridCompute/privateLinkScopes/scopedResources@2020-08-15-preview'" } }, { - "label": "'Microsoft.Kusto/clusters/attachedDatabaseConfigurations@2019-09-07'", + "label": "'Microsoft.HybridCompute/privateLinkScopes@2020-08-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/attachedDatabaseConfigurations` \nAPI Version: `2019-09-07`" + "value": "Namespace: `Microsoft.HybridCompute` \nType: `privateLinkScopes` \nAPI Version: `2020-08-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000605", + "sortText": "00000576", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters/attachedDatabaseConfigurations@2019-09-07'" + "newText": "'Microsoft.HybridCompute/privateLinkScopes@2020-08-15-preview'" } }, { - "label": "'Microsoft.Kusto/clusters/attachedDatabaseConfigurations@2019-11-09'", + "label": "'Microsoft.HybridData/dataManagers/dataServices/jobDefinitions@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/attachedDatabaseConfigurations` \nAPI Version: `2019-11-09`" + "value": "Namespace: `Microsoft.HybridData` \nType: `dataManagers/dataServices/jobDefinitions` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000604", + "sortText": "0000057c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters/attachedDatabaseConfigurations@2019-11-09'" + "newText": "'Microsoft.HybridData/dataManagers/dataServices/jobDefinitions@2016-06-01'" } }, { - "label": "'Microsoft.Kusto/clusters/attachedDatabaseConfigurations@2020-02-15'", + "label": "'Microsoft.HybridData/dataManagers/dataServices/jobDefinitions@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/attachedDatabaseConfigurations` \nAPI Version: `2020-02-15`" + "value": "Namespace: `Microsoft.HybridData` \nType: `dataManagers/dataServices/jobDefinitions` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000603", + "sortText": "0000057b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters/attachedDatabaseConfigurations@2020-02-15'" + "newText": "'Microsoft.HybridData/dataManagers/dataServices/jobDefinitions@2019-06-01'" } }, { - "label": "'Microsoft.Kusto/clusters/attachedDatabaseConfigurations@2020-06-14'", + "label": "'Microsoft.HybridData/dataManagers/dataStores@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/attachedDatabaseConfigurations` \nAPI Version: `2020-06-14`" + "value": "Namespace: `Microsoft.HybridData` \nType: `dataManagers/dataStores` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000602", + "sortText": "0000057e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters/attachedDatabaseConfigurations@2020-06-14'" + "newText": "'Microsoft.HybridData/dataManagers/dataStores@2016-06-01'" } }, { - "label": "'Microsoft.Kusto/clusters/databases/dataConnections@2019-01-21'", + "label": "'Microsoft.HybridData/dataManagers/dataStores@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases/dataConnections` \nAPI Version: `2019-01-21`" + "value": "Namespace: `Microsoft.HybridData` \nType: `dataManagers/dataStores` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000612", + "sortText": "0000057d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters/databases/dataConnections@2019-01-21'" + "newText": "'Microsoft.HybridData/dataManagers/dataStores@2019-06-01'" } }, { - "label": "'Microsoft.Kusto/clusters/databases/dataConnections@2019-05-15'", + "label": "'Microsoft.HybridData/dataManagers@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases/dataConnections` \nAPI Version: `2019-05-15`" + "value": "Namespace: `Microsoft.HybridData` \nType: `dataManagers` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000611", + "sortText": "0000057a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters/databases/dataConnections@2019-05-15'" + "newText": "'Microsoft.HybridData/dataManagers@2016-06-01'" } }, { - "label": "'Microsoft.Kusto/clusters/databases/dataConnections@2019-09-07'", + "label": "'Microsoft.HybridData/dataManagers@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases/dataConnections` \nAPI Version: `2019-09-07`" + "value": "Namespace: `Microsoft.HybridData` \nType: `dataManagers` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000610", + "sortText": "00000579", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters/databases/dataConnections@2019-09-07'" + "newText": "'Microsoft.HybridData/dataManagers@2019-06-01'" } }, { - "label": "'Microsoft.Kusto/clusters/databases/dataConnections@2019-11-09'", + "label": "'Microsoft.HybridNetwork/devices@2020-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases/dataConnections` \nAPI Version: `2019-11-09`" + "value": "Namespace: `Microsoft.HybridNetwork` \nType: `devices` \nAPI Version: `2020-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000060f", + "sortText": "0000057f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters/databases/dataConnections@2019-11-09'" + "newText": "'Microsoft.HybridNetwork/devices@2020-01-01-preview'" } }, { - "label": "'Microsoft.Kusto/clusters/databases/dataConnections@2020-02-15'", + "label": "'Microsoft.HybridNetwork/networkFunctions@2020-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases/dataConnections` \nAPI Version: `2020-02-15`" + "value": "Namespace: `Microsoft.HybridNetwork` \nType: `networkFunctions` \nAPI Version: `2020-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000060e", + "sortText": "00000580", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters/databases/dataConnections@2020-02-15'" + "newText": "'Microsoft.HybridNetwork/networkFunctions@2020-01-01-preview'" } }, { - "label": "'Microsoft.Kusto/clusters/databases/dataConnections@2020-06-14'", + "label": "'Microsoft.ImportExport/jobs@2016-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases/dataConnections` \nAPI Version: `2020-06-14`" + "value": "Namespace: `Microsoft.ImportExport` \nType: `jobs` \nAPI Version: `2016-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000060d", + "sortText": "00000582", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters/databases/dataConnections@2020-06-14'" + "newText": "'Microsoft.ImportExport/jobs@2016-11-01'" } }, { - "label": "'Microsoft.Kusto/clusters/databases/eventhubconnections@2018-09-07-preview'", + "label": "'Microsoft.ImportExport/jobs@2020-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases/eventhubconnections` \nAPI Version: `2018-09-07-preview`" + "value": "Namespace: `Microsoft.ImportExport` \nType: `jobs` \nAPI Version: `2020-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000613", + "sortText": "00000581", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters/databases/eventhubconnections@2018-09-07-preview'" + "newText": "'Microsoft.ImportExport/jobs@2020-08-01'" } }, { - "label": "'Microsoft.Kusto/clusters/databases/principalAssignments@2019-11-09'", + "label": "'Microsoft.Insights/components/ProactiveDetectionConfigs@2015-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases/principalAssignments` \nAPI Version: `2019-11-09`" + "value": "Namespace: `Microsoft.Insights` \nType: `components/ProactiveDetectionConfigs` \nAPI Version: `2015-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000616", + "sortText": "00000596", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters/databases/principalAssignments@2019-11-09'" + "newText": "'Microsoft.Insights/components/ProactiveDetectionConfigs@2015-05-01'" } }, { - "label": "'Microsoft.Kusto/clusters/databases/principalAssignments@2020-02-15'", + "label": "'Microsoft.Insights/components/ProactiveDetectionConfigs@2018-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases/principalAssignments` \nAPI Version: `2020-02-15`" + "value": "Namespace: `Microsoft.Insights` \nType: `components/ProactiveDetectionConfigs` \nAPI Version: `2018-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000615", + "sortText": "00000595", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters/databases/principalAssignments@2020-02-15'" + "newText": "'Microsoft.Insights/components/ProactiveDetectionConfigs@2018-05-01-preview'" } }, { - "label": "'Microsoft.Kusto/clusters/databases/principalAssignments@2020-06-14'", + "label": "'Microsoft.Insights/components/exportconfiguration@2015-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases/principalAssignments` \nAPI Version: `2020-06-14`" + "value": "Namespace: `Microsoft.Insights` \nType: `components/exportconfiguration` \nAPI Version: `2015-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000614", + "sortText": "00000590", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters/databases/principalAssignments@2020-06-14'" + "newText": "'Microsoft.Insights/components/exportconfiguration@2015-05-01'" } }, { - "label": "'Microsoft.Kusto/clusters/databases@2018-09-07-preview'", + "label": "'Microsoft.Insights/components/favorites@2015-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases` \nAPI Version: `2018-09-07-preview`" + "value": "Namespace: `Microsoft.Insights` \nType: `components/favorites` \nAPI Version: `2015-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000060c", + "sortText": "00000591", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters/databases@2018-09-07-preview'" + "newText": "'Microsoft.Insights/components/favorites@2015-05-01'" } }, { - "label": "'Microsoft.Kusto/clusters/databases@2019-01-21'", + "label": "'Microsoft.Insights/components@2015-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases` \nAPI Version: `2019-01-21`" + "value": "Namespace: `Microsoft.Insights` \nType: `components` \nAPI Version: `2015-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000060b", + "sortText": "0000058e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters/databases@2019-01-21'" + "newText": "'Microsoft.Insights/components@2015-05-01'" } }, { - "label": "'Microsoft.Kusto/clusters/databases@2019-05-15'", + "label": "'Microsoft.Insights/components@2018-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases` \nAPI Version: `2019-05-15`" + "value": "Namespace: `Microsoft.Insights` \nType: `components` \nAPI Version: `2018-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000060a", + "sortText": "0000058d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters/databases@2019-05-15'" + "newText": "'Microsoft.Insights/components@2018-05-01-preview'" } }, { - "label": "'Microsoft.Kusto/clusters/databases@2019-09-07'", + "label": "'Microsoft.Insights/components@2020-02-02-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases` \nAPI Version: `2019-09-07`" + "value": "Namespace: `Microsoft.Insights` \nType: `components` \nAPI Version: `2020-02-02-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000609", + "sortText": "0000058c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters/databases@2019-09-07'" + "newText": "'Microsoft.Insights/components@2020-02-02-preview'" } }, { - "label": "'Microsoft.Kusto/clusters/databases@2019-11-09'", + "label": "'Microsoft.Insights/dataCollectionRuleAssociations@2019-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases` \nAPI Version: `2019-11-09`" + "value": "Namespace: `Microsoft.Insights` \nType: `dataCollectionRuleAssociations` \nAPI Version: `2019-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000608", + "sortText": "00000597", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters/databases@2019-11-09'" + "newText": "'Microsoft.Insights/dataCollectionRuleAssociations@2019-11-01-preview'" } }, { - "label": "'Microsoft.Kusto/clusters/databases@2020-02-15'", + "label": "'Microsoft.Insights/dataCollectionRules@2019-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases` \nAPI Version: `2020-02-15`" + "value": "Namespace: `Microsoft.Insights` \nType: `dataCollectionRules` \nAPI Version: `2019-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000607", + "sortText": "00000598", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters/databases@2020-02-15'" + "newText": "'Microsoft.Insights/dataCollectionRules@2019-11-01-preview'" } }, { - "label": "'Microsoft.Kusto/clusters/databases@2020-06-14'", + "label": "'Microsoft.Insights/metricAlerts@2018-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases` \nAPI Version: `2020-06-14`" + "value": "Namespace: `Microsoft.Insights` \nType: `metricAlerts` \nAPI Version: `2018-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000606", + "sortText": "0000059e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters/databases@2020-06-14'" + "newText": "'Microsoft.Insights/metricAlerts@2018-03-01'" } }, { - "label": "'Microsoft.Kusto/clusters/principalAssignments@2019-11-09'", + "label": "'Microsoft.Insights/myWorkbooks@2015-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/principalAssignments` \nAPI Version: `2019-11-09`" + "value": "Namespace: `Microsoft.Insights` \nType: `myWorkbooks` \nAPI Version: `2015-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000619", + "sortText": "0000059f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters/principalAssignments@2019-11-09'" + "newText": "'Microsoft.Insights/myWorkbooks@2015-05-01'" } }, { - "label": "'Microsoft.Kusto/clusters/principalAssignments@2020-02-15'", + "label": "'Microsoft.Insights/privateLinkScopes/privateEndpointConnections@2019-10-17-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/principalAssignments` \nAPI Version: `2020-02-15`" + "value": "Namespace: `Microsoft.Insights` \nType: `privateLinkScopes/privateEndpointConnections` \nAPI Version: `2019-10-17-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000618", + "sortText": "000005a1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters/principalAssignments@2020-02-15'" + "newText": "'Microsoft.Insights/privateLinkScopes/privateEndpointConnections@2019-10-17-preview'" } }, { - "label": "'Microsoft.Kusto/clusters/principalAssignments@2020-06-14'", + "label": "'Microsoft.Insights/privateLinkScopes/scopedResources@2019-10-17-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/principalAssignments` \nAPI Version: `2020-06-14`" + "value": "Namespace: `Microsoft.Insights` \nType: `privateLinkScopes/scopedResources` \nAPI Version: `2019-10-17-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000617", + "sortText": "000005a2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters/principalAssignments@2020-06-14'" + "newText": "'Microsoft.Insights/privateLinkScopes/scopedResources@2019-10-17-preview'" } }, { - "label": "'Microsoft.Kusto/clusters@2018-09-07-preview'", + "label": "'Microsoft.Insights/scheduledQueryRules@2020-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters` \nAPI Version: `2018-09-07-preview`" + "value": "Namespace: `Microsoft.Insights` \nType: `scheduledQueryRules` \nAPI Version: `2020-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000601", + "sortText": "000005a3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters@2018-09-07-preview'" + "newText": "'Microsoft.Insights/scheduledQueryRules@2020-05-01-preview'" } }, { - "label": "'Microsoft.Kusto/clusters@2019-01-21'", + "label": "'Microsoft.Insights/webtests@2015-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters` \nAPI Version: `2019-01-21`" + "value": "Namespace: `Microsoft.Insights` \nType: `webtests` \nAPI Version: `2015-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000600", + "sortText": "000005a5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters@2019-01-21'" + "newText": "'Microsoft.Insights/webtests@2015-05-01'" } }, { - "label": "'Microsoft.Kusto/clusters@2019-05-15'", + "label": "'Microsoft.IoTCentral/iotApps@2018-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters` \nAPI Version: `2019-05-15`" + "value": "Namespace: `Microsoft.IoTCentral` \nType: `iotApps` \nAPI Version: `2018-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000005ff", + "sortText": "000005a9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters@2019-05-15'" + "newText": "'Microsoft.IoTCentral/iotApps@2018-09-01'" } }, { - "label": "'Microsoft.Kusto/clusters@2019-09-07'", + "label": "'Microsoft.IoTSpaces/Graph@2017-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters` \nAPI Version: `2019-09-07`" + "value": "Namespace: `Microsoft.IoTSpaces` \nType: `Graph` \nAPI Version: `2017-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005fe", + "sortText": "000005aa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters@2019-09-07'" + "newText": "'Microsoft.IoTSpaces/Graph@2017-10-01-preview'" } }, { - "label": "'Microsoft.Kusto/clusters@2019-11-09'", + "label": "'Microsoft.KeyVault/managedHSMs@2020-04-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters` \nAPI Version: `2019-11-09`" + "value": "Namespace: `Microsoft.KeyVault` \nType: `managedHSMs` \nAPI Version: `2020-04-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000005fd", + "sortText": "000005ab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters@2019-11-09'" + "newText": "'Microsoft.KeyVault/managedHSMs@2020-04-01-preview'" } }, { - "label": "'Microsoft.Kusto/clusters@2020-02-15'", + "label": "'Microsoft.KeyVault/vaults/accessPolicies@2016-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters` \nAPI Version: `2020-02-15`" + "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/accessPolicies` \nAPI Version: `2016-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000005fc", + "sortText": "000005b6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters@2020-02-15'" + "newText": "'Microsoft.KeyVault/vaults/accessPolicies@2016-10-01'" } }, { - "label": "'Microsoft.Kusto/clusters@2020-06-14'", + "label": "'Microsoft.KeyVault/vaults/accessPolicies@2018-02-14'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Kusto` \nType: `clusters` \nAPI Version: `2020-06-14`" + "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/accessPolicies` \nAPI Version: `2018-02-14`" }, "deprecated": false, "preselect": false, - "sortText": "000005fb", + "sortText": "000005b5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Kusto/clusters@2020-06-14'" + "newText": "'Microsoft.KeyVault/vaults/accessPolicies@2018-02-14'" } }, { - "label": "'Microsoft.LabServices/labaccounts/galleryimages@2018-10-15'", + "label": "'Microsoft.KeyVault/vaults/accessPolicies@2018-02-14-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.LabServices` \nType: `labaccounts/galleryimages` \nAPI Version: `2018-10-15`" + "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/accessPolicies` \nAPI Version: `2018-02-14-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000061b", + "sortText": "000005b4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.LabServices/labaccounts/galleryimages@2018-10-15'" + "newText": "'Microsoft.KeyVault/vaults/accessPolicies@2018-02-14-preview'" } }, { - "label": "'Microsoft.LabServices/labaccounts/labs/environmentsettings/environments@2018-10-15'", + "label": "'Microsoft.KeyVault/vaults/accessPolicies@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.LabServices` \nType: `labaccounts/labs/environmentsettings/environments` \nAPI Version: `2018-10-15`" + "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/accessPolicies` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000061e", + "sortText": "000005b3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.LabServices/labaccounts/labs/environmentsettings/environments@2018-10-15'" + "newText": "'Microsoft.KeyVault/vaults/accessPolicies@2019-09-01'" } }, { - "label": "'Microsoft.LabServices/labaccounts/labs/environmentsettings@2018-10-15'", + "label": "'Microsoft.KeyVault/vaults/accessPolicies@2020-04-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.LabServices` \nType: `labaccounts/labs/environmentsettings` \nAPI Version: `2018-10-15`" + "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/accessPolicies` \nAPI Version: `2020-04-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000061d", + "sortText": "000005b2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.LabServices/labaccounts/labs/environmentsettings@2018-10-15'" + "newText": "'Microsoft.KeyVault/vaults/accessPolicies@2020-04-01-preview'" } }, { - "label": "'Microsoft.LabServices/labaccounts/labs/users@2018-10-15'", + "label": "'Microsoft.KeyVault/vaults/keys@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.LabServices` \nType: `labaccounts/labs/users` \nAPI Version: `2018-10-15`" + "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/keys` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000061f", + "sortText": "000005b7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.LabServices/labaccounts/labs/users@2018-10-15'" + "newText": "'Microsoft.KeyVault/vaults/keys@2019-09-01'" } }, { - "label": "'Microsoft.LabServices/labaccounts/labs@2018-10-15'", + "label": "'Microsoft.KeyVault/vaults/privateEndpointConnections@2018-02-14'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.LabServices` \nType: `labaccounts/labs` \nAPI Version: `2018-10-15`" + "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/privateEndpointConnections` \nAPI Version: `2018-02-14`" }, "deprecated": false, "preselect": false, - "sortText": "0000061c", + "sortText": "000005ba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.LabServices/labaccounts/labs@2018-10-15'" + "newText": "'Microsoft.KeyVault/vaults/privateEndpointConnections@2018-02-14'" } }, { - "label": "'Microsoft.LabServices/labaccounts@2018-10-15'", + "label": "'Microsoft.KeyVault/vaults/privateEndpointConnections@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.LabServices` \nType: `labaccounts` \nAPI Version: `2018-10-15`" + "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/privateEndpointConnections` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000061a", + "sortText": "000005b9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.LabServices/labaccounts@2018-10-15'" + "newText": "'Microsoft.KeyVault/vaults/privateEndpointConnections@2019-09-01'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/agreements@2015-08-01-preview'", + "label": "'Microsoft.KeyVault/vaults/privateEndpointConnections@2020-04-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/agreements` \nAPI Version: `2015-08-01-preview`" + "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/privateEndpointConnections` \nAPI Version: `2020-04-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000627", + "sortText": "000005b8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/agreements@2015-08-01-preview'" + "newText": "'Microsoft.KeyVault/vaults/privateEndpointConnections@2020-04-01-preview'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/agreements@2016-06-01'", + "label": "'Microsoft.KeyVault/vaults/secrets@2016-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/agreements` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/secrets` \nAPI Version: `2016-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000626", + "sortText": "000005bf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/agreements@2016-06-01'" + "newText": "'Microsoft.KeyVault/vaults/secrets@2016-10-01'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/agreements@2018-07-01-preview'", + "label": "'Microsoft.KeyVault/vaults/secrets@2018-02-14'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/agreements` \nAPI Version: `2018-07-01-preview`" + "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/secrets` \nAPI Version: `2018-02-14`" }, "deprecated": false, "preselect": false, - "sortText": "00000625", + "sortText": "000005be", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/agreements@2018-07-01-preview'" + "newText": "'Microsoft.KeyVault/vaults/secrets@2018-02-14'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/agreements@2019-05-01'", + "label": "'Microsoft.KeyVault/vaults/secrets@2018-02-14-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/agreements` \nAPI Version: `2019-05-01`" + "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/secrets` \nAPI Version: `2018-02-14-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000624", + "sortText": "000005bd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/agreements@2019-05-01'" + "newText": "'Microsoft.KeyVault/vaults/secrets@2018-02-14-preview'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/assemblies@2016-06-01'", + "label": "'Microsoft.KeyVault/vaults/secrets@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/assemblies` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/secrets` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000062a", + "sortText": "000005bc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/assemblies@2016-06-01'" + "newText": "'Microsoft.KeyVault/vaults/secrets@2019-09-01'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/assemblies@2018-07-01-preview'", + "label": "'Microsoft.KeyVault/vaults/secrets@2020-04-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/assemblies` \nAPI Version: `2018-07-01-preview`" + "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults/secrets` \nAPI Version: `2020-04-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000629", + "sortText": "000005bb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/assemblies@2018-07-01-preview'" + "newText": "'Microsoft.KeyVault/vaults/secrets@2020-04-01-preview'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/assemblies@2019-05-01'", + "label": "'Microsoft.KeyVault/vaults@2015-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/assemblies` \nAPI Version: `2019-05-01`" + "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults` \nAPI Version: `2015-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000628", + "sortText": "000005b1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/assemblies@2019-05-01'" + "newText": "'Microsoft.KeyVault/vaults@2015-06-01'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/batchConfigurations@2016-06-01'", + "label": "'Microsoft.KeyVault/vaults@2016-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/batchConfigurations` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults` \nAPI Version: `2016-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000062d", + "sortText": "000005b0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/batchConfigurations@2016-06-01'" + "newText": "'Microsoft.KeyVault/vaults@2016-10-01'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/batchConfigurations@2018-07-01-preview'", + "label": "'Microsoft.KeyVault/vaults@2018-02-14'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/batchConfigurations` \nAPI Version: `2018-07-01-preview`" + "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults` \nAPI Version: `2018-02-14`" }, "deprecated": false, "preselect": false, - "sortText": "0000062c", + "sortText": "000005af", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/batchConfigurations@2018-07-01-preview'" + "newText": "'Microsoft.KeyVault/vaults@2018-02-14'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/batchConfigurations@2019-05-01'", + "label": "'Microsoft.KeyVault/vaults@2018-02-14-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/batchConfigurations` \nAPI Version: `2019-05-01`" + "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults` \nAPI Version: `2018-02-14-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000062b", + "sortText": "000005ae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/batchConfigurations@2019-05-01'" + "newText": "'Microsoft.KeyVault/vaults@2018-02-14-preview'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/certificates@2015-08-01-preview'", + "label": "'Microsoft.KeyVault/vaults@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/certificates` \nAPI Version: `2015-08-01-preview`" + "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000631", + "sortText": "000005ad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/certificates@2015-08-01-preview'" + "newText": "'Microsoft.KeyVault/vaults@2019-09-01'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/certificates@2016-06-01'", + "label": "'Microsoft.KeyVault/vaults@2020-04-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/certificates` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.KeyVault` \nType: `vaults` \nAPI Version: `2020-04-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000630", + "sortText": "000005ac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/certificates@2016-06-01'" + "newText": "'Microsoft.KeyVault/vaults@2020-04-01-preview'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/certificates@2018-07-01-preview'", + "label": "'Microsoft.Kubernetes/connectedClusters@2020-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/certificates` \nAPI Version: `2018-07-01-preview`" + "value": "Namespace: `Microsoft.Kubernetes` \nType: `connectedClusters` \nAPI Version: `2020-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000062f", + "sortText": "000005c0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/certificates@2018-07-01-preview'" + "newText": "'Microsoft.Kubernetes/connectedClusters@2020-01-01-preview'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/certificates@2019-05-01'", + "label": "'Microsoft.Kusto/clusters/attachedDatabaseConfigurations@2019-09-07'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/certificates` \nAPI Version: `2019-05-01`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/attachedDatabaseConfigurations` \nAPI Version: `2019-09-07`" }, "deprecated": false, "preselect": false, - "sortText": "0000062e", + "sortText": "000005cb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/certificates@2019-05-01'" + "newText": "'Microsoft.Kusto/clusters/attachedDatabaseConfigurations@2019-09-07'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/maps@2015-08-01-preview'", + "label": "'Microsoft.Kusto/clusters/attachedDatabaseConfigurations@2019-11-09'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/maps` \nAPI Version: `2015-08-01-preview`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/attachedDatabaseConfigurations` \nAPI Version: `2019-11-09`" }, "deprecated": false, "preselect": false, - "sortText": "00000635", + "sortText": "000005ca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/maps@2015-08-01-preview'" + "newText": "'Microsoft.Kusto/clusters/attachedDatabaseConfigurations@2019-11-09'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/maps@2016-06-01'", + "label": "'Microsoft.Kusto/clusters/attachedDatabaseConfigurations@2020-02-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/maps` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/attachedDatabaseConfigurations` \nAPI Version: `2020-02-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000634", + "sortText": "000005c9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/maps@2016-06-01'" + "newText": "'Microsoft.Kusto/clusters/attachedDatabaseConfigurations@2020-02-15'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/maps@2018-07-01-preview'", + "label": "'Microsoft.Kusto/clusters/attachedDatabaseConfigurations@2020-06-14'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/maps` \nAPI Version: `2018-07-01-preview`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/attachedDatabaseConfigurations` \nAPI Version: `2020-06-14`" }, "deprecated": false, "preselect": false, - "sortText": "00000633", + "sortText": "000005c8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/maps@2018-07-01-preview'" + "newText": "'Microsoft.Kusto/clusters/attachedDatabaseConfigurations@2020-06-14'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/maps@2019-05-01'", + "label": "'Microsoft.Kusto/clusters/databases/dataConnections@2019-01-21'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/maps` \nAPI Version: `2019-05-01`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases/dataConnections` \nAPI Version: `2019-01-21`" }, "deprecated": false, "preselect": false, - "sortText": "00000632", + "sortText": "000005d8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/maps@2019-05-01'" + "newText": "'Microsoft.Kusto/clusters/databases/dataConnections@2019-01-21'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/partners@2015-08-01-preview'", + "label": "'Microsoft.Kusto/clusters/databases/dataConnections@2019-05-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/partners` \nAPI Version: `2015-08-01-preview`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases/dataConnections` \nAPI Version: `2019-05-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000639", + "sortText": "000005d7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/partners@2015-08-01-preview'" + "newText": "'Microsoft.Kusto/clusters/databases/dataConnections@2019-05-15'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/partners@2016-06-01'", + "label": "'Microsoft.Kusto/clusters/databases/dataConnections@2019-09-07'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/partners` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases/dataConnections` \nAPI Version: `2019-09-07`" }, "deprecated": false, "preselect": false, - "sortText": "00000638", + "sortText": "000005d6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/partners@2016-06-01'" + "newText": "'Microsoft.Kusto/clusters/databases/dataConnections@2019-09-07'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/partners@2018-07-01-preview'", + "label": "'Microsoft.Kusto/clusters/databases/dataConnections@2019-11-09'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/partners` \nAPI Version: `2018-07-01-preview`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases/dataConnections` \nAPI Version: `2019-11-09`" }, "deprecated": false, "preselect": false, - "sortText": "00000637", + "sortText": "000005d5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/partners@2018-07-01-preview'" + "newText": "'Microsoft.Kusto/clusters/databases/dataConnections@2019-11-09'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/partners@2019-05-01'", + "label": "'Microsoft.Kusto/clusters/databases/dataConnections@2020-02-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/partners` \nAPI Version: `2019-05-01`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases/dataConnections` \nAPI Version: `2020-02-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000636", + "sortText": "000005d4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/partners@2019-05-01'" + "newText": "'Microsoft.Kusto/clusters/databases/dataConnections@2020-02-15'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/rosettanetprocessconfigurations@2016-06-01'", + "label": "'Microsoft.Kusto/clusters/databases/dataConnections@2020-06-14'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/rosettanetprocessconfigurations` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases/dataConnections` \nAPI Version: `2020-06-14`" }, "deprecated": false, "preselect": false, - "sortText": "0000063a", + "sortText": "000005d3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/rosettanetprocessconfigurations@2016-06-01'" + "newText": "'Microsoft.Kusto/clusters/databases/dataConnections@2020-06-14'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/schemas@2015-08-01-preview'", + "label": "'Microsoft.Kusto/clusters/databases/eventhubconnections@2018-09-07-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/schemas` \nAPI Version: `2015-08-01-preview`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases/eventhubconnections` \nAPI Version: `2018-09-07-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000063e", + "sortText": "000005d9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/schemas@2015-08-01-preview'" + "newText": "'Microsoft.Kusto/clusters/databases/eventhubconnections@2018-09-07-preview'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/schemas@2016-06-01'", + "label": "'Microsoft.Kusto/clusters/databases/principalAssignments@2019-11-09'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/schemas` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases/principalAssignments` \nAPI Version: `2019-11-09`" }, "deprecated": false, "preselect": false, - "sortText": "0000063d", + "sortText": "000005dc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/schemas@2016-06-01'" + "newText": "'Microsoft.Kusto/clusters/databases/principalAssignments@2019-11-09'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/schemas@2018-07-01-preview'", + "label": "'Microsoft.Kusto/clusters/databases/principalAssignments@2020-02-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/schemas` \nAPI Version: `2018-07-01-preview`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases/principalAssignments` \nAPI Version: `2020-02-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000063c", + "sortText": "000005db", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/schemas@2018-07-01-preview'" + "newText": "'Microsoft.Kusto/clusters/databases/principalAssignments@2020-02-15'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/schemas@2019-05-01'", + "label": "'Microsoft.Kusto/clusters/databases/principalAssignments@2020-06-14'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/schemas` \nAPI Version: `2019-05-01`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases/principalAssignments` \nAPI Version: `2020-06-14`" }, "deprecated": false, "preselect": false, - "sortText": "0000063b", + "sortText": "000005da", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/schemas@2019-05-01'" + "newText": "'Microsoft.Kusto/clusters/databases/principalAssignments@2020-06-14'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/sessions@2016-06-01'", + "label": "'Microsoft.Kusto/clusters/databases@2018-09-07-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/sessions` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases` \nAPI Version: `2018-09-07-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000641", + "sortText": "000005d2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/sessions@2016-06-01'" + "newText": "'Microsoft.Kusto/clusters/databases@2018-09-07-preview'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/sessions@2018-07-01-preview'", + "label": "'Microsoft.Kusto/clusters/databases@2019-01-21'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/sessions` \nAPI Version: `2018-07-01-preview`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases` \nAPI Version: `2019-01-21`" }, "deprecated": false, "preselect": false, - "sortText": "00000640", + "sortText": "000005d1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/sessions@2018-07-01-preview'" + "newText": "'Microsoft.Kusto/clusters/databases@2019-01-21'" } }, { - "label": "'Microsoft.Logic/integrationAccounts/sessions@2019-05-01'", + "label": "'Microsoft.Kusto/clusters/databases@2019-05-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/sessions` \nAPI Version: `2019-05-01`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases` \nAPI Version: `2019-05-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000063f", + "sortText": "000005d0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts/sessions@2019-05-01'" + "newText": "'Microsoft.Kusto/clusters/databases@2019-05-15'" } }, { - "label": "'Microsoft.Logic/integrationAccounts@2015-08-01-preview'", + "label": "'Microsoft.Kusto/clusters/databases@2019-09-07'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts` \nAPI Version: `2015-08-01-preview`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases` \nAPI Version: `2019-09-07`" }, "deprecated": false, "preselect": false, - "sortText": "00000623", + "sortText": "000005cf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts@2015-08-01-preview'" + "newText": "'Microsoft.Kusto/clusters/databases@2019-09-07'" } }, { - "label": "'Microsoft.Logic/integrationAccounts@2016-06-01'", + "label": "'Microsoft.Kusto/clusters/databases@2019-11-09'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases` \nAPI Version: `2019-11-09`" }, "deprecated": false, "preselect": false, - "sortText": "00000622", + "sortText": "000005ce", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts@2016-06-01'" + "newText": "'Microsoft.Kusto/clusters/databases@2019-11-09'" } }, { - "label": "'Microsoft.Logic/integrationAccounts@2018-07-01-preview'", + "label": "'Microsoft.Kusto/clusters/databases@2020-02-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts` \nAPI Version: `2018-07-01-preview`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases` \nAPI Version: `2020-02-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000621", + "sortText": "000005cd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts@2018-07-01-preview'" + "newText": "'Microsoft.Kusto/clusters/databases@2020-02-15'" } }, { - "label": "'Microsoft.Logic/integrationAccounts@2019-05-01'", + "label": "'Microsoft.Kusto/clusters/databases@2020-06-14'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts` \nAPI Version: `2019-05-01`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/databases` \nAPI Version: `2020-06-14`" }, "deprecated": false, "preselect": false, - "sortText": "00000620", + "sortText": "000005cc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationAccounts@2019-05-01'" + "newText": "'Microsoft.Kusto/clusters/databases@2020-06-14'" } }, { - "label": "'Microsoft.Logic/integrationServiceEnvironments@2019-05-01'", + "label": "'Microsoft.Kusto/clusters/principalAssignments@2019-11-09'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `integrationServiceEnvironments` \nAPI Version: `2019-05-01`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/principalAssignments` \nAPI Version: `2019-11-09`" }, "deprecated": false, "preselect": false, - "sortText": "00000642", + "sortText": "000005df", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/integrationServiceEnvironments@2019-05-01'" + "newText": "'Microsoft.Kusto/clusters/principalAssignments@2019-11-09'" } }, { - "label": "'Microsoft.Logic/workflows/accessKeys@2015-02-01-preview'", + "label": "'Microsoft.Kusto/clusters/principalAssignments@2020-02-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `workflows/accessKeys` \nAPI Version: `2015-02-01-preview`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/principalAssignments` \nAPI Version: `2020-02-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000647", + "sortText": "000005de", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/workflows/accessKeys@2015-02-01-preview'" + "newText": "'Microsoft.Kusto/clusters/principalAssignments@2020-02-15'" } }, { - "label": "'Microsoft.Logic/workflows@2015-02-01-preview'", + "label": "'Microsoft.Kusto/clusters/principalAssignments@2020-06-14'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `workflows` \nAPI Version: `2015-02-01-preview`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters/principalAssignments` \nAPI Version: `2020-06-14`" }, "deprecated": false, "preselect": false, - "sortText": "00000646", + "sortText": "000005dd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/workflows@2015-02-01-preview'" + "newText": "'Microsoft.Kusto/clusters/principalAssignments@2020-06-14'" } }, { - "label": "'Microsoft.Logic/workflows@2016-06-01'", + "label": "'Microsoft.Kusto/clusters@2018-09-07-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `workflows` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters` \nAPI Version: `2018-09-07-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000645", + "sortText": "000005c7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/workflows@2016-06-01'" + "newText": "'Microsoft.Kusto/clusters@2018-09-07-preview'" } }, { - "label": "'Microsoft.Logic/workflows@2018-07-01-preview'", + "label": "'Microsoft.Kusto/clusters@2019-01-21'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `workflows` \nAPI Version: `2018-07-01-preview`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters` \nAPI Version: `2019-01-21`" }, "deprecated": false, "preselect": false, - "sortText": "00000644", + "sortText": "000005c6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/workflows@2018-07-01-preview'" + "newText": "'Microsoft.Kusto/clusters@2019-01-21'" } }, { - "label": "'Microsoft.Logic/workflows@2019-05-01'", + "label": "'Microsoft.Kusto/clusters@2019-05-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Logic` \nType: `workflows` \nAPI Version: `2019-05-01`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters` \nAPI Version: `2019-05-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000643", + "sortText": "000005c5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Logic/workflows@2019-05-01'" + "newText": "'Microsoft.Kusto/clusters@2019-05-15'" } }, { - "label": "'Microsoft.MachineLearning/commitmentPlans@2016-05-01-preview'", + "label": "'Microsoft.Kusto/clusters@2019-09-07'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearning` \nType: `commitmentPlans` \nAPI Version: `2016-05-01-preview`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters` \nAPI Version: `2019-09-07`" }, "deprecated": false, "preselect": false, - "sortText": "00000648", + "sortText": "000005c4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearning/commitmentPlans@2016-05-01-preview'" + "newText": "'Microsoft.Kusto/clusters@2019-09-07'" } }, { - "label": "'Microsoft.MachineLearning/webServices@2016-05-01-preview'", + "label": "'Microsoft.Kusto/clusters@2019-11-09'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearning` \nType: `webServices` \nAPI Version: `2016-05-01-preview`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters` \nAPI Version: `2019-11-09`" }, "deprecated": false, "preselect": false, - "sortText": "0000064a", + "sortText": "000005c3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearning/webServices@2016-05-01-preview'" + "newText": "'Microsoft.Kusto/clusters@2019-11-09'" } }, { - "label": "'Microsoft.MachineLearning/webServices@2017-01-01'", + "label": "'Microsoft.Kusto/clusters@2020-02-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearning` \nType: `webServices` \nAPI Version: `2017-01-01`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters` \nAPI Version: `2020-02-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000649", + "sortText": "000005c2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearning/webServices@2017-01-01'" + "newText": "'Microsoft.Kusto/clusters@2020-02-15'" } }, { - "label": "'Microsoft.MachineLearning/workspaces@2016-04-01'", + "label": "'Microsoft.Kusto/clusters@2020-06-14'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearning` \nType: `workspaces` \nAPI Version: `2016-04-01`" + "value": "Namespace: `Microsoft.Kusto` \nType: `clusters` \nAPI Version: `2020-06-14`" }, "deprecated": false, "preselect": false, - "sortText": "0000064c", + "sortText": "000005c1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearning/workspaces@2016-04-01'" + "newText": "'Microsoft.Kusto/clusters@2020-06-14'" } }, { - "label": "'Microsoft.MachineLearning/workspaces@2019-10-01'", + "label": "'Microsoft.LabServices/labaccounts/galleryimages@2018-10-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearning` \nType: `workspaces` \nAPI Version: `2019-10-01`" + "value": "Namespace: `Microsoft.LabServices` \nType: `labaccounts/galleryimages` \nAPI Version: `2018-10-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000064b", + "sortText": "000005e1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearning/workspaces@2019-10-01'" + "newText": "'Microsoft.LabServices/labaccounts/galleryimages@2018-10-15'" } }, { - "label": "'Microsoft.MachineLearningCompute/operationalizationClusters@2017-06-01-preview'", + "label": "'Microsoft.LabServices/labaccounts/labs/environmentsettings/environments@2018-10-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningCompute` \nType: `operationalizationClusters` \nAPI Version: `2017-06-01-preview`" + "value": "Namespace: `Microsoft.LabServices` \nType: `labaccounts/labs/environmentsettings/environments` \nAPI Version: `2018-10-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000064e", + "sortText": "000005e4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningCompute/operationalizationClusters@2017-06-01-preview'" + "newText": "'Microsoft.LabServices/labaccounts/labs/environmentsettings/environments@2018-10-15'" } }, { - "label": "'Microsoft.MachineLearningCompute/operationalizationClusters@2017-08-01-preview'", + "label": "'Microsoft.LabServices/labaccounts/labs/environmentsettings@2018-10-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningCompute` \nType: `operationalizationClusters` \nAPI Version: `2017-08-01-preview`" + "value": "Namespace: `Microsoft.LabServices` \nType: `labaccounts/labs/environmentsettings` \nAPI Version: `2018-10-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000064d", + "sortText": "000005e3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningCompute/operationalizationClusters@2017-08-01-preview'" + "newText": "'Microsoft.LabServices/labaccounts/labs/environmentsettings@2018-10-15'" } }, { - "label": "'Microsoft.MachineLearningExperimentation/accounts/workspaces/projects@2017-05-01-preview'", + "label": "'Microsoft.LabServices/labaccounts/labs/users@2018-10-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningExperimentation` \nType: `accounts/workspaces/projects` \nAPI Version: `2017-05-01-preview`" + "value": "Namespace: `Microsoft.LabServices` \nType: `labaccounts/labs/users` \nAPI Version: `2018-10-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000651", + "sortText": "000005e5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningExperimentation/accounts/workspaces/projects@2017-05-01-preview'" + "newText": "'Microsoft.LabServices/labaccounts/labs/users@2018-10-15'" } }, { - "label": "'Microsoft.MachineLearningExperimentation/accounts/workspaces@2017-05-01-preview'", + "label": "'Microsoft.LabServices/labaccounts/labs@2018-10-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningExperimentation` \nType: `accounts/workspaces` \nAPI Version: `2017-05-01-preview`" + "value": "Namespace: `Microsoft.LabServices` \nType: `labaccounts/labs` \nAPI Version: `2018-10-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000650", + "sortText": "000005e2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningExperimentation/accounts/workspaces@2017-05-01-preview'" + "newText": "'Microsoft.LabServices/labaccounts/labs@2018-10-15'" } }, { - "label": "'Microsoft.MachineLearningExperimentation/accounts@2017-05-01-preview'", + "label": "'Microsoft.LabServices/labaccounts@2018-10-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningExperimentation` \nType: `accounts` \nAPI Version: `2017-05-01-preview`" + "value": "Namespace: `Microsoft.LabServices` \nType: `labaccounts` \nAPI Version: `2018-10-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000064f", + "sortText": "000005e0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningExperimentation/accounts@2017-05-01-preview'" + "newText": "'Microsoft.LabServices/labaccounts@2018-10-15'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/computes@2018-03-01-preview'", + "label": "'Microsoft.Logic/integrationAccounts/agreements@2015-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/computes` \nAPI Version: `2018-03-01-preview`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/agreements` \nAPI Version: `2015-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000066b", + "sortText": "000005ed", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/computes@2018-03-01-preview'" + "newText": "'Microsoft.Logic/integrationAccounts/agreements@2015-08-01-preview'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/computes@2018-11-19'", + "label": "'Microsoft.Logic/integrationAccounts/agreements@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/computes` \nAPI Version: `2018-11-19`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/agreements` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000066a", + "sortText": "000005ec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/computes@2018-11-19'" + "newText": "'Microsoft.Logic/integrationAccounts/agreements@2016-06-01'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/computes@2019-05-01'", + "label": "'Microsoft.Logic/integrationAccounts/agreements@2018-07-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/computes` \nAPI Version: `2019-05-01`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/agreements` \nAPI Version: `2018-07-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000669", + "sortText": "000005eb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/computes@2019-05-01'" + "newText": "'Microsoft.Logic/integrationAccounts/agreements@2018-07-01-preview'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/computes@2019-06-01'", + "label": "'Microsoft.Logic/integrationAccounts/agreements@2019-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/computes` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/agreements` \nAPI Version: `2019-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000668", + "sortText": "000005ea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/computes@2019-06-01'" + "newText": "'Microsoft.Logic/integrationAccounts/agreements@2019-05-01'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/computes@2019-11-01'", + "label": "'Microsoft.Logic/integrationAccounts/assemblies@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/computes` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/assemblies` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000667", + "sortText": "000005f0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/computes@2019-11-01'" + "newText": "'Microsoft.Logic/integrationAccounts/assemblies@2016-06-01'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/computes@2020-01-01'", + "label": "'Microsoft.Logic/integrationAccounts/assemblies@2018-07-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/computes` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/assemblies` \nAPI Version: `2018-07-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000666", + "sortText": "000005ef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/computes@2020-01-01'" + "newText": "'Microsoft.Logic/integrationAccounts/assemblies@2018-07-01-preview'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/computes@2020-02-18-preview'", + "label": "'Microsoft.Logic/integrationAccounts/assemblies@2019-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/computes` \nAPI Version: `2020-02-18-preview`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/assemblies` \nAPI Version: `2019-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000665", + "sortText": "000005ee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/computes@2020-02-18-preview'" + "newText": "'Microsoft.Logic/integrationAccounts/assemblies@2019-05-01'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/computes@2020-03-01'", + "label": "'Microsoft.Logic/integrationAccounts/batchConfigurations@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/computes` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/batchConfigurations` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000664", + "sortText": "000005f3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/computes@2020-03-01'" + "newText": "'Microsoft.Logic/integrationAccounts/batchConfigurations@2016-06-01'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/computes@2020-04-01'", + "label": "'Microsoft.Logic/integrationAccounts/batchConfigurations@2018-07-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/computes` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/batchConfigurations` \nAPI Version: `2018-07-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000663", + "sortText": "000005f2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/computes@2020-04-01'" + "newText": "'Microsoft.Logic/integrationAccounts/batchConfigurations@2018-07-01-preview'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/computes@2020-05-01-preview'", + "label": "'Microsoft.Logic/integrationAccounts/batchConfigurations@2019-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/computes` \nAPI Version: `2020-05-01-preview`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/batchConfigurations` \nAPI Version: `2019-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000662", + "sortText": "000005f1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/computes@2020-05-01-preview'" + "newText": "'Microsoft.Logic/integrationAccounts/batchConfigurations@2019-05-01'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/computes@2020-05-15-preview'", + "label": "'Microsoft.Logic/integrationAccounts/certificates@2015-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/computes` \nAPI Version: `2020-05-15-preview`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/certificates` \nAPI Version: `2015-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000661", + "sortText": "000005f7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/computes@2020-05-15-preview'" + "newText": "'Microsoft.Logic/integrationAccounts/certificates@2015-08-01-preview'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/computes@2020-06-01'", + "label": "'Microsoft.Logic/integrationAccounts/certificates@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/computes` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/certificates` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000660", + "sortText": "000005f6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/computes@2020-06-01'" + "newText": "'Microsoft.Logic/integrationAccounts/certificates@2016-06-01'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/computes@2020-09-01-preview'", + "label": "'Microsoft.Logic/integrationAccounts/certificates@2018-07-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/computes` \nAPI Version: `2020-09-01-preview`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/certificates` \nAPI Version: `2018-07-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000065f", + "sortText": "000005f5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/computes@2020-09-01-preview'" + "newText": "'Microsoft.Logic/integrationAccounts/certificates@2018-07-01-preview'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/connections@2020-06-01'", + "label": "'Microsoft.Logic/integrationAccounts/certificates@2019-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/connections` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/certificates` \nAPI Version: `2019-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000066d", + "sortText": "000005f4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/connections@2020-06-01'" + "newText": "'Microsoft.Logic/integrationAccounts/certificates@2019-05-01'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/connections@2020-09-01-preview'", + "label": "'Microsoft.Logic/integrationAccounts/maps@2015-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/connections` \nAPI Version: `2020-09-01-preview`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/maps` \nAPI Version: `2015-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000066c", + "sortText": "000005fb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/connections@2020-09-01-preview'" + "newText": "'Microsoft.Logic/integrationAccounts/maps@2015-08-01-preview'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/datasets@2020-05-01-preview'", + "label": "'Microsoft.Logic/integrationAccounts/maps@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/datasets` \nAPI Version: `2020-05-01-preview`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/maps` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000066e", + "sortText": "000005fa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/datasets@2020-05-01-preview'" + "newText": "'Microsoft.Logic/integrationAccounts/maps@2016-06-01'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/datastores@2020-05-01-preview'", + "label": "'Microsoft.Logic/integrationAccounts/maps@2018-07-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/datastores` \nAPI Version: `2020-05-01-preview`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/maps` \nAPI Version: `2018-07-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000066f", + "sortText": "000005f9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/datastores@2020-05-01-preview'" + "newText": "'Microsoft.Logic/integrationAccounts/maps@2018-07-01-preview'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/linkedServices@2020-09-01-preview'", + "label": "'Microsoft.Logic/integrationAccounts/maps@2019-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/linkedServices` \nAPI Version: `2020-09-01-preview`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/maps` \nAPI Version: `2019-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000670", + "sortText": "000005f8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/linkedServices@2020-09-01-preview'" + "newText": "'Microsoft.Logic/integrationAccounts/maps@2019-05-01'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/linkedWorkspaces@2020-05-01-preview'", + "label": "'Microsoft.Logic/integrationAccounts/partners@2015-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/linkedWorkspaces` \nAPI Version: `2020-05-01-preview`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/partners` \nAPI Version: `2015-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000672", + "sortText": "000005ff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/linkedWorkspaces@2020-05-01-preview'" + "newText": "'Microsoft.Logic/integrationAccounts/partners@2015-08-01-preview'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/linkedWorkspaces@2020-05-15-preview'", + "label": "'Microsoft.Logic/integrationAccounts/partners@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/linkedWorkspaces` \nAPI Version: `2020-05-15-preview`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/partners` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000671", + "sortText": "000005fe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/linkedWorkspaces@2020-05-15-preview'" + "newText": "'Microsoft.Logic/integrationAccounts/partners@2016-06-01'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-01-01'", + "label": "'Microsoft.Logic/integrationAccounts/partners@2018-07-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/privateEndpointConnections` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/partners` \nAPI Version: `2018-07-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000067a", + "sortText": "000005fd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-01-01'" + "newText": "'Microsoft.Logic/integrationAccounts/partners@2018-07-01-preview'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-02-18-preview'", + "label": "'Microsoft.Logic/integrationAccounts/partners@2019-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/privateEndpointConnections` \nAPI Version: `2020-02-18-preview`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/partners` \nAPI Version: `2019-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000679", + "sortText": "000005fc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-02-18-preview'" + "newText": "'Microsoft.Logic/integrationAccounts/partners@2019-05-01'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-03-01'", + "label": "'Microsoft.Logic/integrationAccounts/rosettanetprocessconfigurations@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/privateEndpointConnections` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/rosettanetprocessconfigurations` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000678", + "sortText": "00000600", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-03-01'" + "newText": "'Microsoft.Logic/integrationAccounts/rosettanetprocessconfigurations@2016-06-01'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-04-01'", + "label": "'Microsoft.Logic/integrationAccounts/schemas@2015-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/privateEndpointConnections` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/schemas` \nAPI Version: `2015-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000677", + "sortText": "00000604", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-04-01'" + "newText": "'Microsoft.Logic/integrationAccounts/schemas@2015-08-01-preview'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-05-01-preview'", + "label": "'Microsoft.Logic/integrationAccounts/schemas@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/privateEndpointConnections` \nAPI Version: `2020-05-01-preview`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/schemas` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000676", + "sortText": "00000603", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-05-01-preview'" + "newText": "'Microsoft.Logic/integrationAccounts/schemas@2016-06-01'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-05-15-preview'", + "label": "'Microsoft.Logic/integrationAccounts/schemas@2018-07-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/privateEndpointConnections` \nAPI Version: `2020-05-15-preview`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/schemas` \nAPI Version: `2018-07-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000675", + "sortText": "00000602", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-05-15-preview'" + "newText": "'Microsoft.Logic/integrationAccounts/schemas@2018-07-01-preview'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-06-01'", + "label": "'Microsoft.Logic/integrationAccounts/schemas@2019-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/privateEndpointConnections` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/schemas` \nAPI Version: `2019-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000674", + "sortText": "00000601", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-06-01'" + "newText": "'Microsoft.Logic/integrationAccounts/schemas@2019-05-01'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-09-01-preview'", + "label": "'Microsoft.Logic/integrationAccounts/sessions@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/privateEndpointConnections` \nAPI Version: `2020-09-01-preview`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/sessions` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000673", + "sortText": "00000607", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-09-01-preview'" + "newText": "'Microsoft.Logic/integrationAccounts/sessions@2016-06-01'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/services@2020-05-01-preview'", + "label": "'Microsoft.Logic/integrationAccounts/sessions@2018-07-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/services` \nAPI Version: `2020-05-01-preview`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/sessions` \nAPI Version: `2018-07-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000067d", + "sortText": "00000606", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/services@2020-05-01-preview'" + "newText": "'Microsoft.Logic/integrationAccounts/sessions@2018-07-01-preview'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/services@2020-05-15-preview'", + "label": "'Microsoft.Logic/integrationAccounts/sessions@2019-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/services` \nAPI Version: `2020-05-15-preview`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts/sessions` \nAPI Version: `2019-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000067c", + "sortText": "00000605", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/services@2020-05-15-preview'" + "newText": "'Microsoft.Logic/integrationAccounts/sessions@2019-05-01'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces/services@2020-09-01-preview'", + "label": "'Microsoft.Logic/integrationAccounts@2015-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/services` \nAPI Version: `2020-09-01-preview`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts` \nAPI Version: `2015-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000067b", + "sortText": "000005e9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces/services@2020-09-01-preview'" + "newText": "'Microsoft.Logic/integrationAccounts@2015-08-01-preview'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces@2018-03-01-preview'", + "label": "'Microsoft.Logic/integrationAccounts@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces` \nAPI Version: `2018-03-01-preview`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000065e", + "sortText": "000005e8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces@2018-03-01-preview'" + "newText": "'Microsoft.Logic/integrationAccounts@2016-06-01'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces@2018-11-19'", + "label": "'Microsoft.Logic/integrationAccounts@2018-07-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces` \nAPI Version: `2018-11-19`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts` \nAPI Version: `2018-07-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000065d", + "sortText": "000005e7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces@2018-11-19'" + "newText": "'Microsoft.Logic/integrationAccounts@2018-07-01-preview'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces@2019-05-01'", + "label": "'Microsoft.Logic/integrationAccounts@2019-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces` \nAPI Version: `2019-05-01`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationAccounts` \nAPI Version: `2019-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000065c", + "sortText": "000005e6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces@2019-05-01'" + "newText": "'Microsoft.Logic/integrationAccounts@2019-05-01'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces@2019-06-01'", + "label": "'Microsoft.Logic/integrationServiceEnvironments@2019-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Logic` \nType: `integrationServiceEnvironments` \nAPI Version: `2019-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000065b", + "sortText": "00000608", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces@2019-06-01'" + "newText": "'Microsoft.Logic/integrationServiceEnvironments@2019-05-01'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces@2019-11-01'", + "label": "'Microsoft.Logic/workflows/accessKeys@2015-02-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Logic` \nType: `workflows/accessKeys` \nAPI Version: `2015-02-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000065a", + "sortText": "0000060d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces@2019-11-01'" + "newText": "'Microsoft.Logic/workflows/accessKeys@2015-02-01-preview'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces@2020-01-01'", + "label": "'Microsoft.Logic/workflows@2015-02-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Logic` \nType: `workflows` \nAPI Version: `2015-02-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000659", + "sortText": "0000060c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces@2020-01-01'" + "newText": "'Microsoft.Logic/workflows@2015-02-01-preview'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces@2020-02-18-preview'", + "label": "'Microsoft.Logic/workflows@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces` \nAPI Version: `2020-02-18-preview`" + "value": "Namespace: `Microsoft.Logic` \nType: `workflows` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000658", + "sortText": "0000060b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces@2020-02-18-preview'" + "newText": "'Microsoft.Logic/workflows@2016-06-01'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces@2020-03-01'", + "label": "'Microsoft.Logic/workflows@2018-07-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Logic` \nType: `workflows` \nAPI Version: `2018-07-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000657", + "sortText": "0000060a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces@2020-03-01'" + "newText": "'Microsoft.Logic/workflows@2018-07-01-preview'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces@2020-04-01'", + "label": "'Microsoft.Logic/workflows@2019-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Logic` \nType: `workflows` \nAPI Version: `2019-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000656", + "sortText": "00000609", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces@2020-04-01'" + "newText": "'Microsoft.Logic/workflows@2019-05-01'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces@2020-05-01-preview'", + "label": "'Microsoft.MachineLearning/commitmentPlans@2016-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces` \nAPI Version: `2020-05-01-preview`" + "value": "Namespace: `Microsoft.MachineLearning` \nType: `commitmentPlans` \nAPI Version: `2016-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000655", + "sortText": "0000060e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces@2020-05-01-preview'" + "newText": "'Microsoft.MachineLearning/commitmentPlans@2016-05-01-preview'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces@2020-05-15-preview'", + "label": "'Microsoft.MachineLearning/webServices@2016-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces` \nAPI Version: `2020-05-15-preview`" + "value": "Namespace: `Microsoft.MachineLearning` \nType: `webServices` \nAPI Version: `2016-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000654", + "sortText": "00000610", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces@2020-05-15-preview'" + "newText": "'Microsoft.MachineLearning/webServices@2016-05-01-preview'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces@2020-06-01'", + "label": "'Microsoft.MachineLearning/webServices@2017-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.MachineLearning` \nType: `webServices` \nAPI Version: `2017-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000653", + "sortText": "0000060f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces@2020-06-01'" + "newText": "'Microsoft.MachineLearning/webServices@2017-01-01'" } }, { - "label": "'Microsoft.MachineLearningServices/workspaces@2020-09-01-preview'", + "label": "'Microsoft.MachineLearning/workspaces@2016-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces` \nAPI Version: `2020-09-01-preview`" + "value": "Namespace: `Microsoft.MachineLearning` \nType: `workspaces` \nAPI Version: `2016-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000652", + "sortText": "00000612", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MachineLearningServices/workspaces@2020-09-01-preview'" + "newText": "'Microsoft.MachineLearning/workspaces@2016-04-01'" } }, { - "label": "'Microsoft.Maintenance/configurationAssignments@2018-06-01-preview'", + "label": "'Microsoft.MachineLearning/workspaces@2019-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Maintenance` \nType: `configurationAssignments` \nAPI Version: `2018-06-01-preview`" + "value": "Namespace: `Microsoft.MachineLearning` \nType: `workspaces` \nAPI Version: `2019-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000680", + "sortText": "00000611", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Maintenance/configurationAssignments@2018-06-01-preview'" + "newText": "'Microsoft.MachineLearning/workspaces@2019-10-01'" } }, { - "label": "'Microsoft.Maintenance/configurationAssignments@2020-04-01'", + "label": "'Microsoft.MachineLearningCompute/operationalizationClusters@2017-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Maintenance` \nType: `configurationAssignments` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.MachineLearningCompute` \nType: `operationalizationClusters` \nAPI Version: `2017-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000067f", + "sortText": "00000614", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Maintenance/configurationAssignments@2020-04-01'" + "newText": "'Microsoft.MachineLearningCompute/operationalizationClusters@2017-06-01-preview'" } }, { - "label": "'Microsoft.Maintenance/configurationAssignments@2020-07-01-preview'", + "label": "'Microsoft.MachineLearningCompute/operationalizationClusters@2017-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Maintenance` \nType: `configurationAssignments` \nAPI Version: `2020-07-01-preview`" + "value": "Namespace: `Microsoft.MachineLearningCompute` \nType: `operationalizationClusters` \nAPI Version: `2017-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000067e", + "sortText": "00000613", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Maintenance/configurationAssignments@2020-07-01-preview'" + "newText": "'Microsoft.MachineLearningCompute/operationalizationClusters@2017-08-01-preview'" } }, { - "label": "'Microsoft.Maintenance/maintenanceConfigurations@2018-06-01-preview'", + "label": "'Microsoft.MachineLearningExperimentation/accounts/workspaces/projects@2017-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Maintenance` \nType: `maintenanceConfigurations` \nAPI Version: `2018-06-01-preview`" + "value": "Namespace: `Microsoft.MachineLearningExperimentation` \nType: `accounts/workspaces/projects` \nAPI Version: `2017-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000683", + "sortText": "00000617", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Maintenance/maintenanceConfigurations@2018-06-01-preview'" + "newText": "'Microsoft.MachineLearningExperimentation/accounts/workspaces/projects@2017-05-01-preview'" } }, { - "label": "'Microsoft.Maintenance/maintenanceConfigurations@2020-04-01'", + "label": "'Microsoft.MachineLearningExperimentation/accounts/workspaces@2017-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Maintenance` \nType: `maintenanceConfigurations` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.MachineLearningExperimentation` \nType: `accounts/workspaces` \nAPI Version: `2017-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000682", + "sortText": "00000616", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Maintenance/maintenanceConfigurations@2020-04-01'" + "newText": "'Microsoft.MachineLearningExperimentation/accounts/workspaces@2017-05-01-preview'" } }, { - "label": "'Microsoft.Maintenance/maintenanceConfigurations@2020-07-01-preview'", + "label": "'Microsoft.MachineLearningExperimentation/accounts@2017-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Maintenance` \nType: `maintenanceConfigurations` \nAPI Version: `2020-07-01-preview`" + "value": "Namespace: `Microsoft.MachineLearningExperimentation` \nType: `accounts` \nAPI Version: `2017-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000681", + "sortText": "00000615", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Maintenance/maintenanceConfigurations@2020-07-01-preview'" + "newText": "'Microsoft.MachineLearningExperimentation/accounts@2017-05-01-preview'" } }, { - "label": "'Microsoft.ManagedIdentity/userAssignedIdentities@2015-08-31-preview'", + "label": "'Microsoft.MachineLearningServices/workspaces/computes@2018-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ManagedIdentity` \nType: `userAssignedIdentities` \nAPI Version: `2015-08-31-preview`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/computes` \nAPI Version: `2018-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000685", + "sortText": "00000631", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ManagedIdentity/userAssignedIdentities@2015-08-31-preview'" + "newText": "'Microsoft.MachineLearningServices/workspaces/computes@2018-03-01-preview'" } }, { - "label": "'Microsoft.ManagedIdentity/userAssignedIdentities@2018-11-30'", + "label": "'Microsoft.MachineLearningServices/workspaces/computes@2018-11-19'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ManagedIdentity` \nType: `userAssignedIdentities` \nAPI Version: `2018-11-30`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/computes` \nAPI Version: `2018-11-19`" }, "deprecated": false, "preselect": false, - "sortText": "00000684", + "sortText": "00000630", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ManagedIdentity/userAssignedIdentities@2018-11-30'" + "newText": "'Microsoft.MachineLearningServices/workspaces/computes@2018-11-19'" } }, { - "label": "'Microsoft.ManagedNetwork/managedNetworks/managedNetworkGroups@2019-06-01-preview'", + "label": "'Microsoft.MachineLearningServices/workspaces/computes@2019-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ManagedNetwork` \nType: `managedNetworks/managedNetworkGroups` \nAPI Version: `2019-06-01-preview`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/computes` \nAPI Version: `2019-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000687", + "sortText": "0000062f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ManagedNetwork/managedNetworks/managedNetworkGroups@2019-06-01-preview'" + "newText": "'Microsoft.MachineLearningServices/workspaces/computes@2019-05-01'" } }, { - "label": "'Microsoft.ManagedNetwork/managedNetworks/managedNetworkPeeringPolicies@2019-06-01-preview'", + "label": "'Microsoft.MachineLearningServices/workspaces/computes@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ManagedNetwork` \nType: `managedNetworks/managedNetworkPeeringPolicies` \nAPI Version: `2019-06-01-preview`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/computes` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000688", + "sortText": "0000062e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ManagedNetwork/managedNetworks/managedNetworkPeeringPolicies@2019-06-01-preview'" + "newText": "'Microsoft.MachineLearningServices/workspaces/computes@2019-06-01'" } }, { - "label": "'Microsoft.ManagedNetwork/managedNetworks@2019-06-01-preview'", + "label": "'Microsoft.MachineLearningServices/workspaces/computes@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ManagedNetwork` \nType: `managedNetworks` \nAPI Version: `2019-06-01-preview`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/computes` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000686", + "sortText": "0000062d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ManagedNetwork/managedNetworks@2019-06-01-preview'" + "newText": "'Microsoft.MachineLearningServices/workspaces/computes@2019-11-01'" } }, { - "label": "'Microsoft.ManagedNetwork/scopeAssignments@2019-06-01-preview'", + "label": "'Microsoft.MachineLearningServices/workspaces/computes@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ManagedNetwork` \nType: `scopeAssignments` \nAPI Version: `2019-06-01-preview`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/computes` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000689", + "sortText": "0000062c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ManagedNetwork/scopeAssignments@2019-06-01-preview'" + "newText": "'Microsoft.MachineLearningServices/workspaces/computes@2020-01-01'" } }, { - "label": "'Microsoft.ManagedServices/registrationAssignments@2018-06-01-preview'", + "label": "'Microsoft.MachineLearningServices/workspaces/computes@2020-02-18-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ManagedServices` \nType: `registrationAssignments` \nAPI Version: `2018-06-01-preview`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/computes` \nAPI Version: `2020-02-18-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000068e", + "sortText": "0000062b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ManagedServices/registrationAssignments@2018-06-01-preview'" + "newText": "'Microsoft.MachineLearningServices/workspaces/computes@2020-02-18-preview'" } }, { - "label": "'Microsoft.ManagedServices/registrationAssignments@2019-04-01-preview'", + "label": "'Microsoft.MachineLearningServices/workspaces/computes@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ManagedServices` \nType: `registrationAssignments` \nAPI Version: `2019-04-01-preview`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/computes` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000068d", + "sortText": "0000062a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ManagedServices/registrationAssignments@2019-04-01-preview'" + "newText": "'Microsoft.MachineLearningServices/workspaces/computes@2020-03-01'" } }, { - "label": "'Microsoft.ManagedServices/registrationAssignments@2019-06-01'", + "label": "'Microsoft.MachineLearningServices/workspaces/computes@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ManagedServices` \nType: `registrationAssignments` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/computes` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000068c", + "sortText": "00000629", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ManagedServices/registrationAssignments@2019-06-01'" + "newText": "'Microsoft.MachineLearningServices/workspaces/computes@2020-04-01'" } }, { - "label": "'Microsoft.ManagedServices/registrationAssignments@2019-09-01'", + "label": "'Microsoft.MachineLearningServices/workspaces/computes@2020-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ManagedServices` \nType: `registrationAssignments` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/computes` \nAPI Version: `2020-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000068b", + "sortText": "00000628", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ManagedServices/registrationAssignments@2019-09-01'" + "newText": "'Microsoft.MachineLearningServices/workspaces/computes@2020-05-01-preview'" } }, { - "label": "'Microsoft.ManagedServices/registrationAssignments@2020-02-01-preview'", + "label": "'Microsoft.MachineLearningServices/workspaces/computes@2020-05-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ManagedServices` \nType: `registrationAssignments` \nAPI Version: `2020-02-01-preview`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/computes` \nAPI Version: `2020-05-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000068a", + "sortText": "00000627", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ManagedServices/registrationAssignments@2020-02-01-preview'" + "newText": "'Microsoft.MachineLearningServices/workspaces/computes@2020-05-15-preview'" } }, { - "label": "'Microsoft.ManagedServices/registrationDefinitions@2018-06-01-preview'", + "label": "'Microsoft.MachineLearningServices/workspaces/computes@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ManagedServices` \nType: `registrationDefinitions` \nAPI Version: `2018-06-01-preview`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/computes` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000693", + "sortText": "00000626", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ManagedServices/registrationDefinitions@2018-06-01-preview'" + "newText": "'Microsoft.MachineLearningServices/workspaces/computes@2020-06-01'" } }, { - "label": "'Microsoft.ManagedServices/registrationDefinitions@2019-04-01-preview'", + "label": "'Microsoft.MachineLearningServices/workspaces/computes@2020-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ManagedServices` \nType: `registrationDefinitions` \nAPI Version: `2019-04-01-preview`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/computes` \nAPI Version: `2020-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000692", + "sortText": "00000625", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ManagedServices/registrationDefinitions@2019-04-01-preview'" + "newText": "'Microsoft.MachineLearningServices/workspaces/computes@2020-09-01-preview'" } }, { - "label": "'Microsoft.ManagedServices/registrationDefinitions@2019-06-01'", + "label": "'Microsoft.MachineLearningServices/workspaces/connections@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ManagedServices` \nType: `registrationDefinitions` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/connections` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000691", + "sortText": "00000633", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ManagedServices/registrationDefinitions@2019-06-01'" + "newText": "'Microsoft.MachineLearningServices/workspaces/connections@2020-06-01'" } }, { - "label": "'Microsoft.ManagedServices/registrationDefinitions@2019-09-01'", + "label": "'Microsoft.MachineLearningServices/workspaces/connections@2020-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ManagedServices` \nType: `registrationDefinitions` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/connections` \nAPI Version: `2020-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000690", + "sortText": "00000632", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ManagedServices/registrationDefinitions@2019-09-01'" + "newText": "'Microsoft.MachineLearningServices/workspaces/connections@2020-09-01-preview'" } }, { - "label": "'Microsoft.ManagedServices/registrationDefinitions@2020-02-01-preview'", + "label": "'Microsoft.MachineLearningServices/workspaces/datasets@2020-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ManagedServices` \nType: `registrationDefinitions` \nAPI Version: `2020-02-01-preview`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/datasets` \nAPI Version: `2020-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000068f", + "sortText": "00000634", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ManagedServices/registrationDefinitions@2020-02-01-preview'" + "newText": "'Microsoft.MachineLearningServices/workspaces/datasets@2020-05-01-preview'" } }, { - "label": "'Microsoft.Management/managementGroups/settings@2020-02-01'", + "label": "'Microsoft.MachineLearningServices/workspaces/datastores@2020-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Management` \nType: `managementGroups/settings` \nAPI Version: `2020-02-01`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/datastores` \nAPI Version: `2020-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000069b", + "sortText": "00000635", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Management/managementGroups/settings@2020-02-01'" + "newText": "'Microsoft.MachineLearningServices/workspaces/datastores@2020-05-01-preview'" } }, { - "label": "'Microsoft.Management/managementGroups/settings@2020-05-01'", + "label": "'Microsoft.MachineLearningServices/workspaces/linkedServices@2020-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Management` \nType: `managementGroups/settings` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/linkedServices` \nAPI Version: `2020-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000069a", + "sortText": "00000636", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Management/managementGroups/settings@2020-05-01'" + "newText": "'Microsoft.MachineLearningServices/workspaces/linkedServices@2020-09-01-preview'" } }, { - "label": "'Microsoft.Management/managementGroups@2017-11-01-preview'", + "label": "'Microsoft.MachineLearningServices/workspaces/linkedWorkspaces@2020-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Management` \nType: `managementGroups` \nAPI Version: `2017-11-01-preview`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/linkedWorkspaces` \nAPI Version: `2020-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000699", + "sortText": "00000638", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Management/managementGroups@2017-11-01-preview'" + "newText": "'Microsoft.MachineLearningServices/workspaces/linkedWorkspaces@2020-05-01-preview'" } }, { - "label": "'Microsoft.Management/managementGroups@2018-01-01-preview'", + "label": "'Microsoft.MachineLearningServices/workspaces/linkedWorkspaces@2020-05-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Management` \nType: `managementGroups` \nAPI Version: `2018-01-01-preview`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/linkedWorkspaces` \nAPI Version: `2020-05-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000698", + "sortText": "00000637", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Management/managementGroups@2018-01-01-preview'" + "newText": "'Microsoft.MachineLearningServices/workspaces/linkedWorkspaces@2020-05-15-preview'" } }, { - "label": "'Microsoft.Management/managementGroups@2018-03-01-preview'", + "label": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Management` \nType: `managementGroups` \nAPI Version: `2018-03-01-preview`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/privateEndpointConnections` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000697", + "sortText": "00000640", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Management/managementGroups@2018-03-01-preview'" + "newText": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-01-01'" } }, { - "label": "'Microsoft.Management/managementGroups@2019-11-01'", + "label": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-02-18-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Management` \nType: `managementGroups` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/privateEndpointConnections` \nAPI Version: `2020-02-18-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000696", + "sortText": "0000063f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Management/managementGroups@2019-11-01'" + "newText": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-02-18-preview'" } }, { - "label": "'Microsoft.Management/managementGroups@2020-02-01'", + "label": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Management` \nType: `managementGroups` \nAPI Version: `2020-02-01`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/privateEndpointConnections` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000695", + "sortText": "0000063e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Management/managementGroups@2020-02-01'" + "newText": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-03-01'" } }, { - "label": "'Microsoft.Management/managementGroups@2020-05-01'", + "label": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Management` \nType: `managementGroups` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/privateEndpointConnections` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000694", + "sortText": "0000063d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Management/managementGroups@2020-05-01'" + "newText": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-04-01'" } }, { - "label": "'Microsoft.Maps/accounts/creators@2020-02-01-preview'", + "label": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Maps` \nType: `accounts/creators` \nAPI Version: `2020-02-01-preview`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/privateEndpointConnections` \nAPI Version: `2020-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000069f", + "sortText": "0000063c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Maps/accounts/creators@2020-02-01-preview'" + "newText": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-05-01-preview'" } }, { - "label": "'Microsoft.Maps/accounts/privateAtlases@2020-02-01-preview'", + "label": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-05-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Maps` \nType: `accounts/privateAtlases` \nAPI Version: `2020-02-01-preview`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/privateEndpointConnections` \nAPI Version: `2020-05-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006a0", + "sortText": "0000063b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Maps/accounts/privateAtlases@2020-02-01-preview'" + "newText": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-05-15-preview'" } }, { - "label": "'Microsoft.Maps/accounts@2017-01-01-preview'", + "label": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Maps` \nType: `accounts` \nAPI Version: `2017-01-01-preview`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/privateEndpointConnections` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000069e", + "sortText": "0000063a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Maps/accounts@2017-01-01-preview'" + "newText": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-06-01'" } }, { - "label": "'Microsoft.Maps/accounts@2018-05-01'", + "label": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Maps` \nType: `accounts` \nAPI Version: `2018-05-01`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/privateEndpointConnections` \nAPI Version: `2020-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000069d", + "sortText": "00000639", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Maps/accounts@2018-05-01'" + "newText": "'Microsoft.MachineLearningServices/workspaces/privateEndpointConnections@2020-09-01-preview'" } }, { - "label": "'Microsoft.Maps/accounts@2020-02-01-preview'", + "label": "'Microsoft.MachineLearningServices/workspaces/services@2020-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Maps` \nType: `accounts` \nAPI Version: `2020-02-01-preview`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/services` \nAPI Version: `2020-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000069c", + "sortText": "00000643", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Maps/accounts@2020-02-01-preview'" + "newText": "'Microsoft.MachineLearningServices/workspaces/services@2020-05-01-preview'" } }, { - "label": "'Microsoft.Marketplace/privateStores/offers@2020-01-01'", + "label": "'Microsoft.MachineLearningServices/workspaces/services@2020-05-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Marketplace` \nType: `privateStores/offers` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/services` \nAPI Version: `2020-05-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006a2", + "sortText": "00000642", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Marketplace/privateStores/offers@2020-01-01'" + "newText": "'Microsoft.MachineLearningServices/workspaces/services@2020-05-15-preview'" } }, { - "label": "'Microsoft.Marketplace/privateStores@2020-01-01'", + "label": "'Microsoft.MachineLearningServices/workspaces/services@2020-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Marketplace` \nType: `privateStores` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces/services` \nAPI Version: `2020-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006a1", + "sortText": "00000641", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Marketplace/privateStores@2020-01-01'" + "newText": "'Microsoft.MachineLearningServices/workspaces/services@2020-09-01-preview'" } }, { - "label": "'Microsoft.MarketplaceOrdering/offerTypes/publishers/offers/plans/agreements@2015-06-01'", + "label": "'Microsoft.MachineLearningServices/workspaces@2018-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MarketplaceOrdering` \nType: `offerTypes/publishers/offers/plans/agreements` \nAPI Version: `2015-06-01`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces` \nAPI Version: `2018-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006a3", + "sortText": "00000624", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MarketplaceOrdering/offerTypes/publishers/offers/plans/agreements@2015-06-01'" + "newText": "'Microsoft.MachineLearningServices/workspaces@2018-03-01-preview'" } }, { - "label": "'Microsoft.Media/mediaServices/accountFilters@2018-07-01'", + "label": "'Microsoft.MachineLearningServices/workspaces@2018-11-19'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/accountFilters` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces` \nAPI Version: `2018-11-19`" }, "deprecated": false, "preselect": false, - "sortText": "000006aa", + "sortText": "00000623", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/accountFilters@2018-07-01'" + "newText": "'Microsoft.MachineLearningServices/workspaces@2018-11-19'" } }, { - "label": "'Microsoft.Media/mediaServices/accountFilters@2020-05-01'", + "label": "'Microsoft.MachineLearningServices/workspaces@2019-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/accountFilters` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces` \nAPI Version: `2019-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006a9", + "sortText": "00000622", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/accountFilters@2020-05-01'" + "newText": "'Microsoft.MachineLearningServices/workspaces@2019-05-01'" } }, { - "label": "'Microsoft.Media/mediaServices/assets/assetFilters@2018-07-01'", + "label": "'Microsoft.MachineLearningServices/workspaces@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/assets/assetFilters` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006b0", + "sortText": "00000621", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/assets/assetFilters@2018-07-01'" + "newText": "'Microsoft.MachineLearningServices/workspaces@2019-06-01'" } }, { - "label": "'Microsoft.Media/mediaServices/assets/assetFilters@2020-05-01'", + "label": "'Microsoft.MachineLearningServices/workspaces@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/assets/assetFilters` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006af", + "sortText": "00000620", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/assets/assetFilters@2020-05-01'" + "newText": "'Microsoft.MachineLearningServices/workspaces@2019-11-01'" } }, { - "label": "'Microsoft.Media/mediaServices/assets@2018-03-30-preview'", + "label": "'Microsoft.MachineLearningServices/workspaces@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/assets` \nAPI Version: `2018-03-30-preview`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006ae", + "sortText": "0000061f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/assets@2018-03-30-preview'" + "newText": "'Microsoft.MachineLearningServices/workspaces@2020-01-01'" } }, { - "label": "'Microsoft.Media/mediaServices/assets@2018-06-01-preview'", + "label": "'Microsoft.MachineLearningServices/workspaces@2020-02-18-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/assets` \nAPI Version: `2018-06-01-preview`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces` \nAPI Version: `2020-02-18-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006ad", + "sortText": "0000061e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/assets@2018-06-01-preview'" + "newText": "'Microsoft.MachineLearningServices/workspaces@2020-02-18-preview'" } }, { - "label": "'Microsoft.Media/mediaServices/assets@2018-07-01'", + "label": "'Microsoft.MachineLearningServices/workspaces@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/assets` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006ac", + "sortText": "0000061d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/assets@2018-07-01'" + "newText": "'Microsoft.MachineLearningServices/workspaces@2020-03-01'" } }, { - "label": "'Microsoft.Media/mediaServices/assets@2020-05-01'", + "label": "'Microsoft.MachineLearningServices/workspaces@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/assets` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006ab", + "sortText": "0000061c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/assets@2020-05-01'" + "newText": "'Microsoft.MachineLearningServices/workspaces@2020-04-01'" } }, { - "label": "'Microsoft.Media/mediaServices/contentKeyPolicies@2018-03-30-preview'", + "label": "'Microsoft.MachineLearningServices/workspaces@2020-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/contentKeyPolicies` \nAPI Version: `2018-03-30-preview`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces` \nAPI Version: `2020-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006b4", + "sortText": "0000061b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/contentKeyPolicies@2018-03-30-preview'" + "newText": "'Microsoft.MachineLearningServices/workspaces@2020-05-01-preview'" } }, { - "label": "'Microsoft.Media/mediaServices/contentKeyPolicies@2018-06-01-preview'", + "label": "'Microsoft.MachineLearningServices/workspaces@2020-05-15-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/contentKeyPolicies` \nAPI Version: `2018-06-01-preview`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces` \nAPI Version: `2020-05-15-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006b3", + "sortText": "0000061a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/contentKeyPolicies@2018-06-01-preview'" + "newText": "'Microsoft.MachineLearningServices/workspaces@2020-05-15-preview'" } }, { - "label": "'Microsoft.Media/mediaServices/contentKeyPolicies@2018-07-01'", + "label": "'Microsoft.MachineLearningServices/workspaces@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/contentKeyPolicies` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006b2", + "sortText": "00000619", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/contentKeyPolicies@2018-07-01'" + "newText": "'Microsoft.MachineLearningServices/workspaces@2020-06-01'" } }, { - "label": "'Microsoft.Media/mediaServices/contentKeyPolicies@2020-05-01'", + "label": "'Microsoft.MachineLearningServices/workspaces@2020-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/contentKeyPolicies` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.MachineLearningServices` \nType: `workspaces` \nAPI Version: `2020-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006b1", + "sortText": "00000618", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/contentKeyPolicies@2020-05-01'" + "newText": "'Microsoft.MachineLearningServices/workspaces@2020-09-01-preview'" } }, { - "label": "'Microsoft.Media/mediaServices/mediaGraphs@2019-09-01-preview'", + "label": "'Microsoft.Maintenance/maintenanceConfigurations@2018-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/mediaGraphs` \nAPI Version: `2019-09-01-preview`" + "value": "Namespace: `Microsoft.Maintenance` \nType: `maintenanceConfigurations` \nAPI Version: `2018-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006c0", + "sortText": "00000646", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/mediaGraphs@2019-09-01-preview'" + "newText": "'Microsoft.Maintenance/maintenanceConfigurations@2018-06-01-preview'" } }, { - "label": "'Microsoft.Media/mediaServices/mediaGraphs@2020-02-01-preview'", + "label": "'Microsoft.Maintenance/maintenanceConfigurations@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/mediaGraphs` \nAPI Version: `2020-02-01-preview`" + "value": "Namespace: `Microsoft.Maintenance` \nType: `maintenanceConfigurations` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006bf", + "sortText": "00000645", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/mediaGraphs@2020-02-01-preview'" + "newText": "'Microsoft.Maintenance/maintenanceConfigurations@2020-04-01'" } }, { - "label": "'Microsoft.Media/mediaServices/streamingLocators@2018-03-30-preview'", + "label": "'Microsoft.Maintenance/maintenanceConfigurations@2020-07-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/streamingLocators` \nAPI Version: `2018-03-30-preview`" + "value": "Namespace: `Microsoft.Maintenance` \nType: `maintenanceConfigurations` \nAPI Version: `2020-07-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006ca", + "sortText": "00000644", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/streamingLocators@2018-03-30-preview'" + "newText": "'Microsoft.Maintenance/maintenanceConfigurations@2020-07-01-preview'" } }, { - "label": "'Microsoft.Media/mediaServices/streamingLocators@2018-06-01-preview'", + "label": "'Microsoft.ManagedIdentity/userAssignedIdentities@2015-08-31-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/streamingLocators` \nAPI Version: `2018-06-01-preview`" + "value": "Namespace: `Microsoft.ManagedIdentity` \nType: `userAssignedIdentities` \nAPI Version: `2015-08-31-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006c9", + "sortText": "00000648", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/streamingLocators@2018-06-01-preview'" + "newText": "'Microsoft.ManagedIdentity/userAssignedIdentities@2015-08-31-preview'" } }, { - "label": "'Microsoft.Media/mediaServices/streamingLocators@2018-07-01'", + "label": "'Microsoft.ManagedIdentity/userAssignedIdentities@2018-11-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/streamingLocators` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.ManagedIdentity` \nType: `userAssignedIdentities` \nAPI Version: `2018-11-30`" }, "deprecated": false, "preselect": false, - "sortText": "000006c8", + "sortText": "00000647", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/streamingLocators@2018-07-01'" + "newText": "'Microsoft.ManagedIdentity/userAssignedIdentities@2018-11-30'" } }, { - "label": "'Microsoft.Media/mediaServices/streamingLocators@2020-05-01'", + "label": "'Microsoft.ManagedNetwork/managedNetworks/managedNetworkGroups@2019-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/streamingLocators` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.ManagedNetwork` \nType: `managedNetworks/managedNetworkGroups` \nAPI Version: `2019-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006c7", + "sortText": "0000064a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/streamingLocators@2020-05-01'" + "newText": "'Microsoft.ManagedNetwork/managedNetworks/managedNetworkGroups@2019-06-01-preview'" } }, { - "label": "'Microsoft.Media/mediaServices/streamingPolicies@2018-03-30-preview'", + "label": "'Microsoft.ManagedNetwork/managedNetworks/managedNetworkPeeringPolicies@2019-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/streamingPolicies` \nAPI Version: `2018-03-30-preview`" + "value": "Namespace: `Microsoft.ManagedNetwork` \nType: `managedNetworks/managedNetworkPeeringPolicies` \nAPI Version: `2019-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006ce", + "sortText": "0000064b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/streamingPolicies@2018-03-30-preview'" + "newText": "'Microsoft.ManagedNetwork/managedNetworks/managedNetworkPeeringPolicies@2019-06-01-preview'" } }, { - "label": "'Microsoft.Media/mediaServices/streamingPolicies@2018-06-01-preview'", + "label": "'Microsoft.ManagedNetwork/managedNetworks@2019-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/streamingPolicies` \nAPI Version: `2018-06-01-preview`" + "value": "Namespace: `Microsoft.ManagedNetwork` \nType: `managedNetworks` \nAPI Version: `2019-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006cd", + "sortText": "00000649", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/streamingPolicies@2018-06-01-preview'" + "newText": "'Microsoft.ManagedNetwork/managedNetworks@2019-06-01-preview'" } }, { - "label": "'Microsoft.Media/mediaServices/streamingPolicies@2018-07-01'", + "label": "'Microsoft.ManagedNetwork/scopeAssignments@2019-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/streamingPolicies` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.ManagedNetwork` \nType: `scopeAssignments` \nAPI Version: `2019-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006cc", + "sortText": "0000064c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/streamingPolicies@2018-07-01'" + "newText": "'Microsoft.ManagedNetwork/scopeAssignments@2019-06-01-preview'" } }, { - "label": "'Microsoft.Media/mediaServices/streamingPolicies@2020-05-01'", + "label": "'Microsoft.ManagedServices/registrationAssignments@2018-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/streamingPolicies` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.ManagedServices` \nType: `registrationAssignments` \nAPI Version: `2018-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006cb", + "sortText": "00000651", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/streamingPolicies@2020-05-01'" + "newText": "'Microsoft.ManagedServices/registrationAssignments@2018-06-01-preview'" } }, { - "label": "'Microsoft.Media/mediaServices/transforms/jobs@2018-03-30-preview'", + "label": "'Microsoft.ManagedServices/registrationAssignments@2019-04-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/transforms/jobs` \nAPI Version: `2018-03-30-preview`" + "value": "Namespace: `Microsoft.ManagedServices` \nType: `registrationAssignments` \nAPI Version: `2019-04-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006d6", + "sortText": "00000650", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/transforms/jobs@2018-03-30-preview'" + "newText": "'Microsoft.ManagedServices/registrationAssignments@2019-04-01-preview'" } }, { - "label": "'Microsoft.Media/mediaServices/transforms/jobs@2018-06-01-preview'", + "label": "'Microsoft.ManagedServices/registrationAssignments@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/transforms/jobs` \nAPI Version: `2018-06-01-preview`" + "value": "Namespace: `Microsoft.ManagedServices` \nType: `registrationAssignments` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006d5", + "sortText": "0000064f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/transforms/jobs@2018-06-01-preview'" + "newText": "'Microsoft.ManagedServices/registrationAssignments@2019-06-01'" } }, { - "label": "'Microsoft.Media/mediaServices/transforms/jobs@2018-07-01'", + "label": "'Microsoft.ManagedServices/registrationAssignments@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/transforms/jobs` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.ManagedServices` \nType: `registrationAssignments` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006d4", + "sortText": "0000064e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/transforms/jobs@2018-07-01'" + "newText": "'Microsoft.ManagedServices/registrationAssignments@2019-09-01'" } }, { - "label": "'Microsoft.Media/mediaServices/transforms/jobs@2020-05-01'", + "label": "'Microsoft.ManagedServices/registrationAssignments@2020-02-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/transforms/jobs` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.ManagedServices` \nType: `registrationAssignments` \nAPI Version: `2020-02-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006d3", + "sortText": "0000064d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/transforms/jobs@2020-05-01'" + "newText": "'Microsoft.ManagedServices/registrationAssignments@2020-02-01-preview'" } }, { - "label": "'Microsoft.Media/mediaServices/transforms@2018-03-30-preview'", + "label": "'Microsoft.ManagedServices/registrationDefinitions@2018-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/transforms` \nAPI Version: `2018-03-30-preview`" + "value": "Namespace: `Microsoft.ManagedServices` \nType: `registrationDefinitions` \nAPI Version: `2018-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006d2", + "sortText": "00000656", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/transforms@2018-03-30-preview'" + "newText": "'Microsoft.ManagedServices/registrationDefinitions@2018-06-01-preview'" } }, { - "label": "'Microsoft.Media/mediaServices/transforms@2018-06-01-preview'", + "label": "'Microsoft.ManagedServices/registrationDefinitions@2019-04-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/transforms` \nAPI Version: `2018-06-01-preview`" + "value": "Namespace: `Microsoft.ManagedServices` \nType: `registrationDefinitions` \nAPI Version: `2019-04-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006d1", + "sortText": "00000655", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/transforms@2018-06-01-preview'" + "newText": "'Microsoft.ManagedServices/registrationDefinitions@2019-04-01-preview'" } }, { - "label": "'Microsoft.Media/mediaServices/transforms@2018-07-01'", + "label": "'Microsoft.ManagedServices/registrationDefinitions@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/transforms` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.ManagedServices` \nType: `registrationDefinitions` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006d0", + "sortText": "00000654", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/transforms@2018-07-01'" + "newText": "'Microsoft.ManagedServices/registrationDefinitions@2019-06-01'" } }, { - "label": "'Microsoft.Media/mediaServices/transforms@2020-05-01'", + "label": "'Microsoft.ManagedServices/registrationDefinitions@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/transforms` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.ManagedServices` \nType: `registrationDefinitions` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006cf", + "sortText": "00000653", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaServices/transforms@2020-05-01'" + "newText": "'Microsoft.ManagedServices/registrationDefinitions@2019-09-01'" } }, { - "label": "'Microsoft.Media/mediaservices/liveEvents/liveOutputs@2018-03-30-preview'", + "label": "'Microsoft.ManagedServices/registrationDefinitions@2020-02-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/liveEvents/liveOutputs` \nAPI Version: `2018-03-30-preview`" + "value": "Namespace: `Microsoft.ManagedServices` \nType: `registrationDefinitions` \nAPI Version: `2020-02-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006be", + "sortText": "00000652", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaservices/liveEvents/liveOutputs@2018-03-30-preview'" + "newText": "'Microsoft.ManagedServices/registrationDefinitions@2020-02-01-preview'" } }, { - "label": "'Microsoft.Media/mediaservices/liveEvents/liveOutputs@2018-06-01-preview'", + "label": "'Microsoft.Maps/accounts/creators@2020-02-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/liveEvents/liveOutputs` \nAPI Version: `2018-06-01-preview`" + "value": "Namespace: `Microsoft.Maps` \nType: `accounts/creators` \nAPI Version: `2020-02-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006bd", + "sortText": "0000065a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaservices/liveEvents/liveOutputs@2018-06-01-preview'" + "newText": "'Microsoft.Maps/accounts/creators@2020-02-01-preview'" } }, { - "label": "'Microsoft.Media/mediaservices/liveEvents/liveOutputs@2018-07-01'", + "label": "'Microsoft.Maps/accounts/privateAtlases@2020-02-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/liveEvents/liveOutputs` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Maps` \nType: `accounts/privateAtlases` \nAPI Version: `2020-02-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006bc", + "sortText": "0000065b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaservices/liveEvents/liveOutputs@2018-07-01'" + "newText": "'Microsoft.Maps/accounts/privateAtlases@2020-02-01-preview'" } }, { - "label": "'Microsoft.Media/mediaservices/liveEvents/liveOutputs@2019-05-01-preview'", + "label": "'Microsoft.Maps/accounts@2017-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/liveEvents/liveOutputs` \nAPI Version: `2019-05-01-preview`" + "value": "Namespace: `Microsoft.Maps` \nType: `accounts` \nAPI Version: `2017-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006bb", + "sortText": "00000659", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaservices/liveEvents/liveOutputs@2019-05-01-preview'" + "newText": "'Microsoft.Maps/accounts@2017-01-01-preview'" } }, { - "label": "'Microsoft.Media/mediaservices/liveEvents/liveOutputs@2020-05-01'", + "label": "'Microsoft.Maps/accounts@2018-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/liveEvents/liveOutputs` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Maps` \nType: `accounts` \nAPI Version: `2018-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006ba", + "sortText": "00000658", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaservices/liveEvents/liveOutputs@2020-05-01'" + "newText": "'Microsoft.Maps/accounts@2018-05-01'" } }, { - "label": "'Microsoft.Media/mediaservices/liveEvents@2018-03-30-preview'", + "label": "'Microsoft.Maps/accounts@2020-02-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/liveEvents` \nAPI Version: `2018-03-30-preview`" + "value": "Namespace: `Microsoft.Maps` \nType: `accounts` \nAPI Version: `2020-02-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006b9", + "sortText": "00000657", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaservices/liveEvents@2018-03-30-preview'" + "newText": "'Microsoft.Maps/accounts@2020-02-01-preview'" } }, { - "label": "'Microsoft.Media/mediaservices/liveEvents@2018-06-01-preview'", + "label": "'Microsoft.Media/mediaServices/accountFilters@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/liveEvents` \nAPI Version: `2018-06-01-preview`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/accountFilters` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006b8", + "sortText": "00000662", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaservices/liveEvents@2018-06-01-preview'" + "newText": "'Microsoft.Media/mediaServices/accountFilters@2018-07-01'" } }, { - "label": "'Microsoft.Media/mediaservices/liveEvents@2018-07-01'", + "label": "'Microsoft.Media/mediaServices/accountFilters@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/liveEvents` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/accountFilters` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006b7", + "sortText": "00000661", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaservices/liveEvents@2018-07-01'" + "newText": "'Microsoft.Media/mediaServices/accountFilters@2020-05-01'" } }, { - "label": "'Microsoft.Media/mediaservices/liveEvents@2019-05-01-preview'", + "label": "'Microsoft.Media/mediaServices/assets/assetFilters@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/liveEvents` \nAPI Version: `2019-05-01-preview`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/assets/assetFilters` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006b6", + "sortText": "00000668", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaservices/liveEvents@2019-05-01-preview'" + "newText": "'Microsoft.Media/mediaServices/assets/assetFilters@2018-07-01'" } }, { - "label": "'Microsoft.Media/mediaservices/liveEvents@2020-05-01'", + "label": "'Microsoft.Media/mediaServices/assets/assetFilters@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/liveEvents` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/assets/assetFilters` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006b5", + "sortText": "00000667", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaservices/liveEvents@2020-05-01'" + "newText": "'Microsoft.Media/mediaServices/assets/assetFilters@2020-05-01'" } }, { - "label": "'Microsoft.Media/mediaservices/privateEndpointConnections@2020-05-01'", + "label": "'Microsoft.Media/mediaServices/assets@2018-03-30-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/privateEndpointConnections` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/assets` \nAPI Version: `2018-03-30-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006c1", + "sortText": "00000666", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaservices/privateEndpointConnections@2020-05-01'" + "newText": "'Microsoft.Media/mediaServices/assets@2018-03-30-preview'" } }, { - "label": "'Microsoft.Media/mediaservices/streamingEndpoints@2018-03-30-preview'", + "label": "'Microsoft.Media/mediaServices/assets@2018-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/streamingEndpoints` \nAPI Version: `2018-03-30-preview`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/assets` \nAPI Version: `2018-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006c6", + "sortText": "00000665", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaservices/streamingEndpoints@2018-03-30-preview'" + "newText": "'Microsoft.Media/mediaServices/assets@2018-06-01-preview'" } }, { - "label": "'Microsoft.Media/mediaservices/streamingEndpoints@2018-06-01-preview'", + "label": "'Microsoft.Media/mediaServices/assets@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/streamingEndpoints` \nAPI Version: `2018-06-01-preview`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/assets` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006c5", + "sortText": "00000664", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaservices/streamingEndpoints@2018-06-01-preview'" + "newText": "'Microsoft.Media/mediaServices/assets@2018-07-01'" } }, { - "label": "'Microsoft.Media/mediaservices/streamingEndpoints@2018-07-01'", + "label": "'Microsoft.Media/mediaServices/assets@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/streamingEndpoints` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/assets` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006c4", + "sortText": "00000663", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaservices/streamingEndpoints@2018-07-01'" + "newText": "'Microsoft.Media/mediaServices/assets@2020-05-01'" } }, { - "label": "'Microsoft.Media/mediaservices/streamingEndpoints@2019-05-01-preview'", + "label": "'Microsoft.Media/mediaServices/contentKeyPolicies@2018-03-30-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/streamingEndpoints` \nAPI Version: `2019-05-01-preview`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/contentKeyPolicies` \nAPI Version: `2018-03-30-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006c3", + "sortText": "0000066c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaservices/streamingEndpoints@2019-05-01-preview'" + "newText": "'Microsoft.Media/mediaServices/contentKeyPolicies@2018-03-30-preview'" } }, { - "label": "'Microsoft.Media/mediaservices/streamingEndpoints@2020-05-01'", + "label": "'Microsoft.Media/mediaServices/contentKeyPolicies@2018-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/streamingEndpoints` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/contentKeyPolicies` \nAPI Version: `2018-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006c2", + "sortText": "0000066b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaservices/streamingEndpoints@2020-05-01'" + "newText": "'Microsoft.Media/mediaServices/contentKeyPolicies@2018-06-01-preview'" } }, { - "label": "'Microsoft.Media/mediaservices@2015-10-01'", + "label": "'Microsoft.Media/mediaServices/contentKeyPolicies@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaservices` \nAPI Version: `2015-10-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/contentKeyPolicies` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006a8", + "sortText": "0000066a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaservices@2015-10-01'" + "newText": "'Microsoft.Media/mediaServices/contentKeyPolicies@2018-07-01'" } }, { - "label": "'Microsoft.Media/mediaservices@2018-03-30-preview'", + "label": "'Microsoft.Media/mediaServices/contentKeyPolicies@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaservices` \nAPI Version: `2018-03-30-preview`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/contentKeyPolicies` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006a7", + "sortText": "00000669", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaservices@2018-03-30-preview'" + "newText": "'Microsoft.Media/mediaServices/contentKeyPolicies@2020-05-01'" } }, { - "label": "'Microsoft.Media/mediaservices@2018-06-01-preview'", + "label": "'Microsoft.Media/mediaServices/mediaGraphs@2019-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaservices` \nAPI Version: `2018-06-01-preview`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/mediaGraphs` \nAPI Version: `2019-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006a6", + "sortText": "00000678", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaservices@2018-06-01-preview'" + "newText": "'Microsoft.Media/mediaServices/mediaGraphs@2019-09-01-preview'" } }, { - "label": "'Microsoft.Media/mediaservices@2018-07-01'", + "label": "'Microsoft.Media/mediaServices/mediaGraphs@2020-02-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaservices` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/mediaGraphs` \nAPI Version: `2020-02-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006a5", + "sortText": "00000677", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaservices@2018-07-01'" + "newText": "'Microsoft.Media/mediaServices/mediaGraphs@2020-02-01-preview'" } }, { - "label": "'Microsoft.Media/mediaservices@2020-05-01'", + "label": "'Microsoft.Media/mediaServices/streamingLocators@2018-03-30-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Media` \nType: `mediaservices` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/streamingLocators` \nAPI Version: `2018-03-30-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006a4", + "sortText": "00000682", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Media/mediaservices@2020-05-01'" + "newText": "'Microsoft.Media/mediaServices/streamingLocators@2018-03-30-preview'" } }, { - "label": "'Microsoft.Migrate/assessmentProjects/groups/assessments@2019-10-01'", + "label": "'Microsoft.Media/mediaServices/streamingLocators@2018-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Migrate` \nType: `assessmentProjects/groups/assessments` \nAPI Version: `2019-10-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/streamingLocators` \nAPI Version: `2018-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006d9", + "sortText": "00000681", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Migrate/assessmentProjects/groups/assessments@2019-10-01'" + "newText": "'Microsoft.Media/mediaServices/streamingLocators@2018-06-01-preview'" } }, { - "label": "'Microsoft.Migrate/assessmentProjects/groups@2019-10-01'", + "label": "'Microsoft.Media/mediaServices/streamingLocators@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Migrate` \nType: `assessmentProjects/groups` \nAPI Version: `2019-10-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/streamingLocators` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006d8", + "sortText": "00000680", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Migrate/assessmentProjects/groups@2019-10-01'" + "newText": "'Microsoft.Media/mediaServices/streamingLocators@2018-07-01'" } }, { - "label": "'Microsoft.Migrate/assessmentProjects/hypervcollectors@2019-10-01'", + "label": "'Microsoft.Media/mediaServices/streamingLocators@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Migrate` \nType: `assessmentProjects/hypervcollectors` \nAPI Version: `2019-10-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/streamingLocators` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006da", + "sortText": "0000067f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Migrate/assessmentProjects/hypervcollectors@2019-10-01'" + "newText": "'Microsoft.Media/mediaServices/streamingLocators@2020-05-01'" } }, { - "label": "'Microsoft.Migrate/assessmentProjects/vmwarecollectors@2019-10-01'", + "label": "'Microsoft.Media/mediaServices/streamingPolicies@2018-03-30-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Migrate` \nType: `assessmentProjects/vmwarecollectors` \nAPI Version: `2019-10-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/streamingPolicies` \nAPI Version: `2018-03-30-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006db", + "sortText": "00000686", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Migrate/assessmentProjects/vmwarecollectors@2019-10-01'" + "newText": "'Microsoft.Media/mediaServices/streamingPolicies@2018-03-30-preview'" } }, { - "label": "'Microsoft.Migrate/assessmentProjects@2019-10-01'", + "label": "'Microsoft.Media/mediaServices/streamingPolicies@2018-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Migrate` \nType: `assessmentProjects` \nAPI Version: `2019-10-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/streamingPolicies` \nAPI Version: `2018-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006d7", + "sortText": "00000685", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Migrate/assessmentProjects@2019-10-01'" + "newText": "'Microsoft.Media/mediaServices/streamingPolicies@2018-06-01-preview'" } }, { - "label": "'Microsoft.Migrate/migrateProjects/solutions@2018-09-01-preview'", + "label": "'Microsoft.Media/mediaServices/streamingPolicies@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Migrate` \nType: `migrateProjects/solutions` \nAPI Version: `2018-09-01-preview`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/streamingPolicies` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006dd", + "sortText": "00000684", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Migrate/migrateProjects/solutions@2018-09-01-preview'" + "newText": "'Microsoft.Media/mediaServices/streamingPolicies@2018-07-01'" } }, { - "label": "'Microsoft.Migrate/migrateProjects@2018-09-01-preview'", + "label": "'Microsoft.Media/mediaServices/streamingPolicies@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Migrate` \nType: `migrateProjects` \nAPI Version: `2018-09-01-preview`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/streamingPolicies` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006dc", + "sortText": "00000683", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Migrate/migrateProjects@2018-09-01-preview'" + "newText": "'Microsoft.Media/mediaServices/streamingPolicies@2020-05-01'" } }, { - "label": "'Microsoft.Migrate/moveCollections/moveResources@2019-10-01-preview'", + "label": "'Microsoft.Media/mediaServices/transforms/jobs@2018-03-30-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Migrate` \nType: `moveCollections/moveResources` \nAPI Version: `2019-10-01-preview`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/transforms/jobs` \nAPI Version: `2018-03-30-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006df", + "sortText": "0000068e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Migrate/moveCollections/moveResources@2019-10-01-preview'" + "newText": "'Microsoft.Media/mediaServices/transforms/jobs@2018-03-30-preview'" } }, { - "label": "'Microsoft.Migrate/moveCollections@2019-10-01-preview'", + "label": "'Microsoft.Media/mediaServices/transforms/jobs@2018-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Migrate` \nType: `moveCollections` \nAPI Version: `2019-10-01-preview`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/transforms/jobs` \nAPI Version: `2018-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006de", + "sortText": "0000068d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Migrate/moveCollections@2019-10-01-preview'" + "newText": "'Microsoft.Media/mediaServices/transforms/jobs@2018-06-01-preview'" } }, { - "label": "'Microsoft.Migrate/projects/groups/assessments@2018-02-02'", + "label": "'Microsoft.Media/mediaServices/transforms/jobs@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Migrate` \nType: `projects/groups/assessments` \nAPI Version: `2018-02-02`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/transforms/jobs` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006e2", + "sortText": "0000068c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Migrate/projects/groups/assessments@2018-02-02'" + "newText": "'Microsoft.Media/mediaServices/transforms/jobs@2018-07-01'" } }, { - "label": "'Microsoft.Migrate/projects/groups@2018-02-02'", + "label": "'Microsoft.Media/mediaServices/transforms/jobs@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Migrate` \nType: `projects/groups` \nAPI Version: `2018-02-02`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/transforms/jobs` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006e1", + "sortText": "0000068b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Migrate/projects/groups@2018-02-02'" + "newText": "'Microsoft.Media/mediaServices/transforms/jobs@2020-05-01'" } }, { - "label": "'Microsoft.Migrate/projects@2018-02-02'", + "label": "'Microsoft.Media/mediaServices/transforms@2018-03-30-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Migrate` \nType: `projects` \nAPI Version: `2018-02-02`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/transforms` \nAPI Version: `2018-03-30-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006e0", + "sortText": "0000068a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Migrate/projects@2018-02-02'" + "newText": "'Microsoft.Media/mediaServices/transforms@2018-03-30-preview'" } }, { - "label": "'Microsoft.MixedReality/remoteRenderingAccounts@2019-12-02-preview'", + "label": "'Microsoft.Media/mediaServices/transforms@2018-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MixedReality` \nType: `remoteRenderingAccounts` \nAPI Version: `2019-12-02-preview`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/transforms` \nAPI Version: `2018-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006e4", + "sortText": "00000689", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MixedReality/remoteRenderingAccounts@2019-12-02-preview'" + "newText": "'Microsoft.Media/mediaServices/transforms@2018-06-01-preview'" } }, { - "label": "'Microsoft.MixedReality/remoteRenderingAccounts@2020-04-06-preview'", + "label": "'Microsoft.Media/mediaServices/transforms@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MixedReality` \nType: `remoteRenderingAccounts` \nAPI Version: `2020-04-06-preview`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/transforms` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006e3", + "sortText": "00000688", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MixedReality/remoteRenderingAccounts@2020-04-06-preview'" + "newText": "'Microsoft.Media/mediaServices/transforms@2018-07-01'" } }, { - "label": "'Microsoft.MixedReality/spatialAnchorsAccounts@2019-02-28-preview'", + "label": "'Microsoft.Media/mediaServices/transforms@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MixedReality` \nType: `spatialAnchorsAccounts` \nAPI Version: `2019-02-28-preview`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaServices/transforms` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006e7", + "sortText": "00000687", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MixedReality/spatialAnchorsAccounts@2019-02-28-preview'" + "newText": "'Microsoft.Media/mediaServices/transforms@2020-05-01'" } }, { - "label": "'Microsoft.MixedReality/spatialAnchorsAccounts@2019-12-02-preview'", + "label": "'Microsoft.Media/mediaservices/liveEvents/liveOutputs@2018-03-30-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MixedReality` \nType: `spatialAnchorsAccounts` \nAPI Version: `2019-12-02-preview`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/liveEvents/liveOutputs` \nAPI Version: `2018-03-30-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006e6", + "sortText": "00000676", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MixedReality/spatialAnchorsAccounts@2019-12-02-preview'" + "newText": "'Microsoft.Media/mediaservices/liveEvents/liveOutputs@2018-03-30-preview'" } }, { - "label": "'Microsoft.MixedReality/spatialAnchorsAccounts@2020-05-01'", + "label": "'Microsoft.Media/mediaservices/liveEvents/liveOutputs@2018-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.MixedReality` \nType: `spatialAnchorsAccounts` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/liveEvents/liveOutputs` \nAPI Version: `2018-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006e5", + "sortText": "00000675", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.MixedReality/spatialAnchorsAccounts@2020-05-01'" + "newText": "'Microsoft.Media/mediaservices/liveEvents/liveOutputs@2018-06-01-preview'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/backupPolicies@2020-06-01'", + "label": "'Microsoft.Media/mediaservices/liveEvents/liveOutputs@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/backupPolicies` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/liveEvents/liveOutputs` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006f5", + "sortText": "00000674", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/backupPolicies@2020-06-01'" + "newText": "'Microsoft.Media/mediaservices/liveEvents/liveOutputs@2018-07-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/backupPolicies@2020-07-01'", + "label": "'Microsoft.Media/mediaservices/liveEvents/liveOutputs@2019-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/backupPolicies` \nAPI Version: `2020-07-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/liveEvents/liveOutputs` \nAPI Version: `2019-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006f4", + "sortText": "00000673", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/backupPolicies@2020-07-01'" + "newText": "'Microsoft.Media/mediaservices/liveEvents/liveOutputs@2019-05-01-preview'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/backupPolicies@2020-08-01'", + "label": "'Microsoft.Media/mediaservices/liveEvents/liveOutputs@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/backupPolicies` \nAPI Version: `2020-08-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/liveEvents/liveOutputs` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006f3", + "sortText": "00000672", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/backupPolicies@2020-08-01'" + "newText": "'Microsoft.Media/mediaservices/liveEvents/liveOutputs@2020-05-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups@2020-06-01'", + "label": "'Microsoft.Media/mediaservices/liveEvents@2018-03-30-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/backups` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/liveEvents` \nAPI Version: `2018-03-30-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000070e", + "sortText": "00000671", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups@2020-06-01'" + "newText": "'Microsoft.Media/mediaservices/liveEvents@2018-03-30-preview'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups@2020-07-01'", + "label": "'Microsoft.Media/mediaservices/liveEvents@2018-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/backups` \nAPI Version: `2020-07-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/liveEvents` \nAPI Version: `2018-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000070d", + "sortText": "00000670", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups@2020-07-01'" + "newText": "'Microsoft.Media/mediaservices/liveEvents@2018-06-01-preview'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups@2020-08-01'", + "label": "'Microsoft.Media/mediaservices/liveEvents@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/backups` \nAPI Version: `2020-08-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/liveEvents` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000070c", + "sortText": "0000066f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups@2020-08-01'" + "newText": "'Microsoft.Media/mediaservices/liveEvents@2018-07-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2017-08-15'", + "label": "'Microsoft.Media/mediaservices/liveEvents@2019-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/snapshots` \nAPI Version: `2017-08-15`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/liveEvents` \nAPI Version: `2019-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000719", + "sortText": "0000066e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2017-08-15'" + "newText": "'Microsoft.Media/mediaservices/liveEvents@2019-05-01-preview'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2019-05-01'", + "label": "'Microsoft.Media/mediaservices/liveEvents@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/snapshots` \nAPI Version: `2019-05-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/liveEvents` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000718", + "sortText": "0000066d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2019-05-01'" + "newText": "'Microsoft.Media/mediaservices/liveEvents@2020-05-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2019-06-01'", + "label": "'Microsoft.Media/mediaservices/privateEndpointConnections@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/snapshots` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/privateEndpointConnections` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000717", + "sortText": "00000679", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2019-06-01'" + "newText": "'Microsoft.Media/mediaservices/privateEndpointConnections@2020-05-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2019-07-01'", + "label": "'Microsoft.Media/mediaservices/streamingEndpoints@2018-03-30-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/snapshots` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/streamingEndpoints` \nAPI Version: `2018-03-30-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000716", + "sortText": "0000067e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2019-07-01'" + "newText": "'Microsoft.Media/mediaservices/streamingEndpoints@2018-03-30-preview'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2019-08-01'", + "label": "'Microsoft.Media/mediaservices/streamingEndpoints@2018-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/snapshots` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/streamingEndpoints` \nAPI Version: `2018-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000715", + "sortText": "0000067d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2019-08-01'" + "newText": "'Microsoft.Media/mediaservices/streamingEndpoints@2018-06-01-preview'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2019-10-01'", + "label": "'Microsoft.Media/mediaservices/streamingEndpoints@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/snapshots` \nAPI Version: `2019-10-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/streamingEndpoints` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000714", + "sortText": "0000067c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2019-10-01'" + "newText": "'Microsoft.Media/mediaservices/streamingEndpoints@2018-07-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2019-11-01'", + "label": "'Microsoft.Media/mediaservices/streamingEndpoints@2019-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/snapshots` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/streamingEndpoints` \nAPI Version: `2019-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000713", + "sortText": "0000067b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2019-11-01'" + "newText": "'Microsoft.Media/mediaservices/streamingEndpoints@2019-05-01-preview'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2020-02-01'", + "label": "'Microsoft.Media/mediaservices/streamingEndpoints@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/snapshots` \nAPI Version: `2020-02-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaservices/streamingEndpoints` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000712", + "sortText": "0000067a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2020-02-01'" + "newText": "'Microsoft.Media/mediaservices/streamingEndpoints@2020-05-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2020-06-01'", + "label": "'Microsoft.Media/mediaservices@2015-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/snapshots` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaservices` \nAPI Version: `2015-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000711", + "sortText": "00000660", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2020-06-01'" + "newText": "'Microsoft.Media/mediaservices@2015-10-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2020-07-01'", + "label": "'Microsoft.Media/mediaservices@2018-03-30-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/snapshots` \nAPI Version: `2020-07-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaservices` \nAPI Version: `2018-03-30-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000710", + "sortText": "0000065f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2020-07-01'" + "newText": "'Microsoft.Media/mediaservices@2018-03-30-preview'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2020-08-01'", + "label": "'Microsoft.Media/mediaservices@2018-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/snapshots` \nAPI Version: `2020-08-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaservices` \nAPI Version: `2018-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000070f", + "sortText": "0000065e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2020-08-01'" + "newText": "'Microsoft.Media/mediaservices@2018-06-01-preview'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2017-08-15'", + "label": "'Microsoft.Media/mediaservices@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes` \nAPI Version: `2017-08-15`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaservices` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000070b", + "sortText": "0000065d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2017-08-15'" + "newText": "'Microsoft.Media/mediaservices@2018-07-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2019-05-01'", + "label": "'Microsoft.Media/mediaservices@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes` \nAPI Version: `2019-05-01`" + "value": "Namespace: `Microsoft.Media` \nType: `mediaservices` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000070a", + "sortText": "0000065c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2019-05-01'" + "newText": "'Microsoft.Media/mediaservices@2020-05-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2019-06-01'", + "label": "'Microsoft.Migrate/assessmentProjects/groups/assessments@2019-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Migrate` \nType: `assessmentProjects/groups/assessments` \nAPI Version: `2019-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000709", + "sortText": "00000691", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2019-06-01'" + "newText": "'Microsoft.Migrate/assessmentProjects/groups/assessments@2019-10-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2019-07-01'", + "label": "'Microsoft.Migrate/assessmentProjects/groups@2019-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Migrate` \nType: `assessmentProjects/groups` \nAPI Version: `2019-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000708", + "sortText": "00000690", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2019-07-01'" + "newText": "'Microsoft.Migrate/assessmentProjects/groups@2019-10-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2019-08-01'", + "label": "'Microsoft.Migrate/assessmentProjects/hypervcollectors@2019-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Migrate` \nType: `assessmentProjects/hypervcollectors` \nAPI Version: `2019-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000707", + "sortText": "00000692", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2019-08-01'" + "newText": "'Microsoft.Migrate/assessmentProjects/hypervcollectors@2019-10-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2019-10-01'", + "label": "'Microsoft.Migrate/assessmentProjects/vmwarecollectors@2019-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes` \nAPI Version: `2019-10-01`" + "value": "Namespace: `Microsoft.Migrate` \nType: `assessmentProjects/vmwarecollectors` \nAPI Version: `2019-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000706", + "sortText": "00000693", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2019-10-01'" + "newText": "'Microsoft.Migrate/assessmentProjects/vmwarecollectors@2019-10-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2019-11-01'", + "label": "'Microsoft.Migrate/assessmentProjects@2019-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Migrate` \nType: `assessmentProjects` \nAPI Version: `2019-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000705", + "sortText": "0000068f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2019-11-01'" + "newText": "'Microsoft.Migrate/assessmentProjects@2019-10-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2020-02-01'", + "label": "'Microsoft.Migrate/migrateProjects/solutions@2018-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes` \nAPI Version: `2020-02-01`" + "value": "Namespace: `Microsoft.Migrate` \nType: `migrateProjects/solutions` \nAPI Version: `2018-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000704", + "sortText": "00000695", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2020-02-01'" + "newText": "'Microsoft.Migrate/migrateProjects/solutions@2018-09-01-preview'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2020-06-01'", + "label": "'Microsoft.Migrate/migrateProjects@2018-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Migrate` \nType: `migrateProjects` \nAPI Version: `2018-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000703", + "sortText": "00000694", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2020-06-01'" + "newText": "'Microsoft.Migrate/migrateProjects@2018-09-01-preview'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2020-07-01'", + "label": "'Microsoft.Migrate/moveCollections/moveResources@2019-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes` \nAPI Version: `2020-07-01`" + "value": "Namespace: `Microsoft.Migrate` \nType: `moveCollections/moveResources` \nAPI Version: `2019-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000702", + "sortText": "00000697", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2020-07-01'" + "newText": "'Microsoft.Migrate/moveCollections/moveResources@2019-10-01-preview'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2020-08-01'", + "label": "'Microsoft.Migrate/moveCollections@2019-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes` \nAPI Version: `2020-08-01`" + "value": "Namespace: `Microsoft.Migrate` \nType: `moveCollections` \nAPI Version: `2019-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000701", + "sortText": "00000696", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2020-08-01'" + "newText": "'Microsoft.Migrate/moveCollections@2019-10-01-preview'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools@2017-08-15'", + "label": "'Microsoft.Migrate/projects/groups/assessments@2018-02-02'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools` \nAPI Version: `2017-08-15`" + "value": "Namespace: `Microsoft.Migrate` \nType: `projects/groups/assessments` \nAPI Version: `2018-02-02`" }, "deprecated": false, "preselect": false, - "sortText": "00000700", + "sortText": "0000069a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools@2017-08-15'" + "newText": "'Microsoft.Migrate/projects/groups/assessments@2018-02-02'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools@2019-05-01'", + "label": "'Microsoft.Migrate/projects/groups@2018-02-02'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools` \nAPI Version: `2019-05-01`" + "value": "Namespace: `Microsoft.Migrate` \nType: `projects/groups` \nAPI Version: `2018-02-02`" }, "deprecated": false, "preselect": false, - "sortText": "000006ff", + "sortText": "00000699", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools@2019-05-01'" + "newText": "'Microsoft.Migrate/projects/groups@2018-02-02'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools@2019-06-01'", + "label": "'Microsoft.Migrate/projects@2018-02-02'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Migrate` \nType: `projects` \nAPI Version: `2018-02-02`" }, "deprecated": false, "preselect": false, - "sortText": "000006fe", + "sortText": "00000698", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools@2019-06-01'" + "newText": "'Microsoft.Migrate/projects@2018-02-02'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools@2019-07-01'", + "label": "'Microsoft.MixedReality/remoteRenderingAccounts@2019-12-02-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.MixedReality` \nType: `remoteRenderingAccounts` \nAPI Version: `2019-12-02-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006fd", + "sortText": "0000069c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools@2019-07-01'" + "newText": "'Microsoft.MixedReality/remoteRenderingAccounts@2019-12-02-preview'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools@2019-08-01'", + "label": "'Microsoft.MixedReality/remoteRenderingAccounts@2020-04-06-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.MixedReality` \nType: `remoteRenderingAccounts` \nAPI Version: `2020-04-06-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006fc", + "sortText": "0000069b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools@2019-08-01'" + "newText": "'Microsoft.MixedReality/remoteRenderingAccounts@2020-04-06-preview'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools@2019-10-01'", + "label": "'Microsoft.MixedReality/spatialAnchorsAccounts@2019-02-28-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools` \nAPI Version: `2019-10-01`" + "value": "Namespace: `Microsoft.MixedReality` \nType: `spatialAnchorsAccounts` \nAPI Version: `2019-02-28-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006fb", + "sortText": "0000069f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools@2019-10-01'" + "newText": "'Microsoft.MixedReality/spatialAnchorsAccounts@2019-02-28-preview'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools@2019-11-01'", + "label": "'Microsoft.MixedReality/spatialAnchorsAccounts@2019-12-02-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.MixedReality` \nType: `spatialAnchorsAccounts` \nAPI Version: `2019-12-02-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000006fa", + "sortText": "0000069e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools@2019-11-01'" + "newText": "'Microsoft.MixedReality/spatialAnchorsAccounts@2019-12-02-preview'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools@2020-02-01'", + "label": "'Microsoft.MixedReality/spatialAnchorsAccounts@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools` \nAPI Version: `2020-02-01`" + "value": "Namespace: `Microsoft.MixedReality` \nType: `spatialAnchorsAccounts` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006f9", + "sortText": "0000069d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools@2020-02-01'" + "newText": "'Microsoft.MixedReality/spatialAnchorsAccounts@2020-05-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools@2020-06-01'", + "label": "'Microsoft.NetApp/netAppAccounts/backupPolicies@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/backupPolicies` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006f8", + "sortText": "000006af", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools@2020-06-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/backupPolicies@2020-06-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools@2020-07-01'", + "label": "'Microsoft.NetApp/netAppAccounts/backupPolicies@2020-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools` \nAPI Version: `2020-07-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/backupPolicies` \nAPI Version: `2020-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006f7", + "sortText": "000006ae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools@2020-07-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/backupPolicies@2020-07-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/capacityPools@2020-08-01'", + "label": "'Microsoft.NetApp/netAppAccounts/backupPolicies@2020-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools` \nAPI Version: `2020-08-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/backupPolicies` \nAPI Version: `2020-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006f6", + "sortText": "000006ad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools@2020-08-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/backupPolicies@2020-08-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/snapshotPolicies@2020-06-01'", + "label": "'Microsoft.NetApp/netAppAccounts/backupPolicies@2020-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/snapshotPolicies` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/backupPolicies` \nAPI Version: `2020-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000071c", + "sortText": "000006ac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/snapshotPolicies@2020-06-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/backupPolicies@2020-09-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/snapshotPolicies@2020-07-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/snapshotPolicies` \nAPI Version: `2020-07-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/backups` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000071b", + "sortText": "000006cb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/snapshotPolicies@2020-07-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups@2020-06-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts/snapshotPolicies@2020-08-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups@2020-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/snapshotPolicies` \nAPI Version: `2020-08-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/backups` \nAPI Version: `2020-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000071a", + "sortText": "000006ca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts/snapshotPolicies@2020-08-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups@2020-07-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts@2017-08-15'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups@2020-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts` \nAPI Version: `2017-08-15`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/backups` \nAPI Version: `2020-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006f2", + "sortText": "000006c9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts@2017-08-15'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups@2020-08-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts@2019-05-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups@2020-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts` \nAPI Version: `2019-05-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/backups` \nAPI Version: `2020-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006f1", + "sortText": "000006c8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts@2019-05-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups@2020-09-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts@2019-06-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2017-08-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/snapshots` \nAPI Version: `2017-08-15`" }, "deprecated": false, "preselect": false, - "sortText": "000006f0", + "sortText": "000006d7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts@2019-06-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2017-08-15'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts@2019-07-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2019-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/snapshots` \nAPI Version: `2019-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006ef", + "sortText": "000006d6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts@2019-07-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2019-05-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts@2019-08-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/snapshots` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006ee", + "sortText": "000006d5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts@2019-08-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2019-06-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts@2019-10-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts` \nAPI Version: `2019-10-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/snapshots` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006ed", + "sortText": "000006d4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts@2019-10-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2019-07-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts@2019-11-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/snapshots` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006ec", + "sortText": "000006d3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts@2019-11-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2019-08-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts@2020-02-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2019-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts` \nAPI Version: `2020-02-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/snapshots` \nAPI Version: `2019-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006eb", + "sortText": "000006d2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts@2020-02-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2019-10-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts@2020-06-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/snapshots` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006ea", + "sortText": "000006d1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts@2020-06-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2019-11-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts@2020-07-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2020-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts` \nAPI Version: `2020-07-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/snapshots` \nAPI Version: `2020-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006e9", + "sortText": "000006d0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts@2020-07-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2020-02-01'" } }, { - "label": "'Microsoft.NetApp/netAppAccounts@2020-08-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts` \nAPI Version: `2020-08-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/snapshots` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000006e8", + "sortText": "000006cf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NetApp/netAppAccounts@2020-08-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2020-06-01'" } }, { - "label": "'Microsoft.Network.Admin/locations/quotas@2015-06-15'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2020-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network.Admin` \nType: `locations/quotas` \nAPI Version: `2015-06-15`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/snapshots` \nAPI Version: `2020-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000071d", + "sortText": "000006ce", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network.Admin/locations/quotas@2015-06-15'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2020-07-01'" } }, { - "label": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2018-12-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2020-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ApplicationGatewayWebApplicationFirewallPolicies` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/snapshots` \nAPI Version: `2020-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000074d", + "sortText": "000006cd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2018-12-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2020-08-01'" } }, { - "label": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-02-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2020-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ApplicationGatewayWebApplicationFirewallPolicies` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes/snapshots` \nAPI Version: `2020-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000074c", + "sortText": "000006cc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-02-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots@2020-09-01'" } }, { - "label": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-04-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2017-08-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ApplicationGatewayWebApplicationFirewallPolicies` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes` \nAPI Version: `2017-08-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000074b", + "sortText": "000006c7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-04-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2017-08-15'" } }, { - "label": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-06-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2019-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ApplicationGatewayWebApplicationFirewallPolicies` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes` \nAPI Version: `2019-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000074a", + "sortText": "000006c6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-06-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2019-05-01'" } }, { - "label": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-07-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ApplicationGatewayWebApplicationFirewallPolicies` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000749", + "sortText": "000006c5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-07-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2019-06-01'" } }, { - "label": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-08-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ApplicationGatewayWebApplicationFirewallPolicies` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000748", + "sortText": "000006c4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-08-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2019-07-01'" } }, { - "label": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-09-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ApplicationGatewayWebApplicationFirewallPolicies` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000747", + "sortText": "000006c3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-09-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2019-08-01'" } }, { - "label": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-11-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2019-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ApplicationGatewayWebApplicationFirewallPolicies` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes` \nAPI Version: `2019-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000746", + "sortText": "000006c2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-11-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2019-10-01'" } }, { - "label": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-12-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ApplicationGatewayWebApplicationFirewallPolicies` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000745", + "sortText": "000006c1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-12-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2019-11-01'" } }, { - "label": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2020-03-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2020-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ApplicationGatewayWebApplicationFirewallPolicies` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes` \nAPI Version: `2020-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000744", + "sortText": "000006c0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2020-03-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2020-02-01'" } }, { - "label": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2020-04-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ApplicationGatewayWebApplicationFirewallPolicies` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000743", + "sortText": "000006bf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2020-04-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2020-06-01'" } }, { - "label": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2020-05-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2020-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ApplicationGatewayWebApplicationFirewallPolicies` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes` \nAPI Version: `2020-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000742", + "sortText": "000006be", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2020-05-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2020-07-01'" } }, { - "label": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2020-06-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2020-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ApplicationGatewayWebApplicationFirewallPolicies` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes` \nAPI Version: `2020-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000741", + "sortText": "000006bd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2020-06-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2020-08-01'" } }, { - "label": "'Microsoft.Network/ExpressRoutePorts@2018-08-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2020-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools/volumes` \nAPI Version: `2020-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008d7", + "sortText": "000006bc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ExpressRoutePorts@2018-08-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools/volumes@2020-09-01'" } }, { - "label": "'Microsoft.Network/ExpressRoutePorts@2018-10-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools@2017-08-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools` \nAPI Version: `2017-08-15`" }, "deprecated": false, "preselect": false, - "sortText": "000008d6", + "sortText": "000006bb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ExpressRoutePorts@2018-10-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools@2017-08-15'" } }, { - "label": "'Microsoft.Network/ExpressRoutePorts@2018-11-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools@2019-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools` \nAPI Version: `2019-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008d5", + "sortText": "000006ba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ExpressRoutePorts@2018-11-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools@2019-05-01'" } }, { - "label": "'Microsoft.Network/ExpressRoutePorts@2018-12-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008d4", + "sortText": "000006b9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ExpressRoutePorts@2018-12-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools@2019-06-01'" } }, { - "label": "'Microsoft.Network/ExpressRoutePorts@2019-02-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008d3", + "sortText": "000006b8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ExpressRoutePorts@2019-02-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools@2019-07-01'" } }, { - "label": "'Microsoft.Network/ExpressRoutePorts@2019-04-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008d2", + "sortText": "000006b7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ExpressRoutePorts@2019-04-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools@2019-08-01'" } }, { - "label": "'Microsoft.Network/ExpressRoutePorts@2019-06-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools@2019-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools` \nAPI Version: `2019-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008d1", + "sortText": "000006b6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ExpressRoutePorts@2019-06-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools@2019-10-01'" } }, { - "label": "'Microsoft.Network/ExpressRoutePorts@2019-07-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008d0", + "sortText": "000006b5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ExpressRoutePorts@2019-07-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools@2019-11-01'" } }, { - "label": "'Microsoft.Network/ExpressRoutePorts@2019-08-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools@2020-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools` \nAPI Version: `2020-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008cf", + "sortText": "000006b4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ExpressRoutePorts@2019-08-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools@2020-02-01'" } }, { - "label": "'Microsoft.Network/ExpressRoutePorts@2019-09-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008ce", + "sortText": "000006b3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ExpressRoutePorts@2019-09-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools@2020-06-01'" } }, { - "label": "'Microsoft.Network/ExpressRoutePorts@2019-11-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools@2020-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools` \nAPI Version: `2020-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008cd", + "sortText": "000006b2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ExpressRoutePorts@2019-11-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools@2020-07-01'" } }, { - "label": "'Microsoft.Network/ExpressRoutePorts@2019-12-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools@2020-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools` \nAPI Version: `2020-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008cc", + "sortText": "000006b1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ExpressRoutePorts@2019-12-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools@2020-08-01'" } }, { - "label": "'Microsoft.Network/ExpressRoutePorts@2020-03-01'", + "label": "'Microsoft.NetApp/netAppAccounts/capacityPools@2020-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/capacityPools` \nAPI Version: `2020-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008cb", + "sortText": "000006b0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ExpressRoutePorts@2020-03-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/capacityPools@2020-09-01'" } }, { - "label": "'Microsoft.Network/ExpressRoutePorts@2020-04-01'", + "label": "'Microsoft.NetApp/netAppAccounts/snapshotPolicies@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/snapshotPolicies` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008ca", + "sortText": "000006db", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ExpressRoutePorts@2020-04-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/snapshotPolicies@2020-06-01'" } }, { - "label": "'Microsoft.Network/ExpressRoutePorts@2020-05-01'", + "label": "'Microsoft.NetApp/netAppAccounts/snapshotPolicies@2020-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/snapshotPolicies` \nAPI Version: `2020-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008c9", + "sortText": "000006da", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ExpressRoutePorts@2020-05-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/snapshotPolicies@2020-07-01'" } }, { - "label": "'Microsoft.Network/ExpressRoutePorts@2020-06-01'", + "label": "'Microsoft.NetApp/netAppAccounts/snapshotPolicies@2020-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/snapshotPolicies` \nAPI Version: `2020-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008c8", + "sortText": "000006d9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ExpressRoutePorts@2020-06-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/snapshotPolicies@2020-08-01'" } }, { - "label": "'Microsoft.Network/FrontDoorWebApplicationFirewallPolicies@2018-08-01'", + "label": "'Microsoft.NetApp/netAppAccounts/snapshotPolicies@2020-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `FrontDoorWebApplicationFirewallPolicies` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts/snapshotPolicies` \nAPI Version: `2020-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008f8", + "sortText": "000006d8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/FrontDoorWebApplicationFirewallPolicies@2018-08-01'" + "newText": "'Microsoft.NetApp/netAppAccounts/snapshotPolicies@2020-09-01'" } }, { - "label": "'Microsoft.Network/FrontDoorWebApplicationFirewallPolicies@2019-03-01'", + "label": "'Microsoft.NetApp/netAppAccounts@2017-08-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `FrontDoorWebApplicationFirewallPolicies` \nAPI Version: `2019-03-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts` \nAPI Version: `2017-08-15`" }, "deprecated": false, "preselect": false, - "sortText": "000008f7", + "sortText": "000006ab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/FrontDoorWebApplicationFirewallPolicies@2019-03-01'" + "newText": "'Microsoft.NetApp/netAppAccounts@2017-08-15'" } }, { - "label": "'Microsoft.Network/FrontDoorWebApplicationFirewallPolicies@2019-10-01'", + "label": "'Microsoft.NetApp/netAppAccounts@2019-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `FrontDoorWebApplicationFirewallPolicies` \nAPI Version: `2019-10-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts` \nAPI Version: `2019-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008f6", + "sortText": "000006aa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/FrontDoorWebApplicationFirewallPolicies@2019-10-01'" + "newText": "'Microsoft.NetApp/netAppAccounts@2019-05-01'" } }, { - "label": "'Microsoft.Network/FrontDoorWebApplicationFirewallPolicies@2020-04-01'", + "label": "'Microsoft.NetApp/netAppAccounts@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `FrontDoorWebApplicationFirewallPolicies` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008f5", + "sortText": "000006a9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/FrontDoorWebApplicationFirewallPolicies@2020-04-01'" + "newText": "'Microsoft.NetApp/netAppAccounts@2019-06-01'" } }, { - "label": "'Microsoft.Network/IpAllocations@2020-03-01'", + "label": "'Microsoft.NetApp/netAppAccounts@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `IpAllocations` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000901", + "sortText": "000006a8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/IpAllocations@2020-03-01'" + "newText": "'Microsoft.NetApp/netAppAccounts@2019-07-01'" } }, { - "label": "'Microsoft.Network/IpAllocations@2020-04-01'", + "label": "'Microsoft.NetApp/netAppAccounts@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `IpAllocations` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000900", + "sortText": "000006a7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/IpAllocations@2020-04-01'" + "newText": "'Microsoft.NetApp/netAppAccounts@2019-08-01'" } }, { - "label": "'Microsoft.Network/IpAllocations@2020-05-01'", + "label": "'Microsoft.NetApp/netAppAccounts@2019-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `IpAllocations` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts` \nAPI Version: `2019-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008ff", + "sortText": "000006a6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/IpAllocations@2020-05-01'" + "newText": "'Microsoft.NetApp/netAppAccounts@2019-10-01'" } }, { - "label": "'Microsoft.Network/IpAllocations@2020-06-01'", + "label": "'Microsoft.NetApp/netAppAccounts@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `IpAllocations` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008fe", + "sortText": "000006a5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/IpAllocations@2020-06-01'" + "newText": "'Microsoft.NetApp/netAppAccounts@2019-11-01'" } }, { - "label": "'Microsoft.Network/NetworkExperimentProfiles/Experiments@2019-11-01'", + "label": "'Microsoft.NetApp/netAppAccounts@2020-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `NetworkExperimentProfiles/Experiments` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts` \nAPI Version: `2020-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000975", + "sortText": "000006a4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/NetworkExperimentProfiles/Experiments@2019-11-01'" + "newText": "'Microsoft.NetApp/netAppAccounts@2020-02-01'" } }, { - "label": "'Microsoft.Network/NetworkExperimentProfiles@2019-11-01'", + "label": "'Microsoft.NetApp/netAppAccounts@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `NetworkExperimentProfiles` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000974", + "sortText": "000006a3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/NetworkExperimentProfiles@2019-11-01'" + "newText": "'Microsoft.NetApp/netAppAccounts@2020-06-01'" } }, { - "label": "'Microsoft.Network/applicationGateways/privateEndpointConnections@2020-05-01'", + "label": "'Microsoft.NetApp/netAppAccounts@2020-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways/privateEndpointConnections` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts` \nAPI Version: `2020-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000740", + "sortText": "000006a2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways/privateEndpointConnections@2020-05-01'" + "newText": "'Microsoft.NetApp/netAppAccounts@2020-07-01'" } }, { - "label": "'Microsoft.Network/applicationGateways/privateEndpointConnections@2020-06-01'", + "label": "'Microsoft.NetApp/netAppAccounts@2020-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways/privateEndpointConnections` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts` \nAPI Version: `2020-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000073f", + "sortText": "000006a1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways/privateEndpointConnections@2020-06-01'" + "newText": "'Microsoft.NetApp/netAppAccounts@2020-08-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2015-05-01-preview'", + "label": "'Microsoft.NetApp/netAppAccounts@2020-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2015-05-01-preview`" + "value": "Namespace: `Microsoft.NetApp` \nType: `netAppAccounts` \nAPI Version: `2020-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000073e", + "sortText": "000006a0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2015-05-01-preview'" + "newText": "'Microsoft.NetApp/netAppAccounts@2020-09-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2015-06-15'", + "label": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2015-06-15`" + "value": "Namespace: `Microsoft.Network` \nType: `ApplicationGatewayWebApplicationFirewallPolicies` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000073d", + "sortText": "0000070b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2015-06-15'" + "newText": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2018-12-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2016-03-30'", + "label": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2016-03-30`" + "value": "Namespace: `Microsoft.Network` \nType: `ApplicationGatewayWebApplicationFirewallPolicies` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000073c", + "sortText": "0000070a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2016-03-30'" + "newText": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-02-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2016-06-01'", + "label": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ApplicationGatewayWebApplicationFirewallPolicies` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000073b", + "sortText": "00000709", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2016-06-01'" + "newText": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-04-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2016-09-01'", + "label": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2016-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ApplicationGatewayWebApplicationFirewallPolicies` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000073a", + "sortText": "00000708", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2016-09-01'" + "newText": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-06-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2016-12-01'", + "label": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2016-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ApplicationGatewayWebApplicationFirewallPolicies` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000739", + "sortText": "00000707", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2016-12-01'" + "newText": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-07-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2017-03-01'", + "label": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2017-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ApplicationGatewayWebApplicationFirewallPolicies` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000738", + "sortText": "00000706", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2017-03-01'" + "newText": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-08-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2017-06-01'", + "label": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2017-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ApplicationGatewayWebApplicationFirewallPolicies` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000737", + "sortText": "00000705", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2017-06-01'" + "newText": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-09-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2017-08-01'", + "label": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2017-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ApplicationGatewayWebApplicationFirewallPolicies` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000736", + "sortText": "00000704", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2017-08-01'" + "newText": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-11-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2017-09-01'", + "label": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ApplicationGatewayWebApplicationFirewallPolicies` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000735", + "sortText": "00000703", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2017-09-01'" + "newText": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2019-12-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2017-10-01'", + "label": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ApplicationGatewayWebApplicationFirewallPolicies` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000734", + "sortText": "00000702", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2017-10-01'" + "newText": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2020-03-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2017-11-01'", + "label": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2017-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ApplicationGatewayWebApplicationFirewallPolicies` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000733", + "sortText": "00000701", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2017-11-01'" + "newText": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2020-04-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2018-01-01'", + "label": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2018-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ApplicationGatewayWebApplicationFirewallPolicies` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000732", + "sortText": "00000700", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2018-01-01'" + "newText": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2020-05-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2018-02-01'", + "label": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ApplicationGatewayWebApplicationFirewallPolicies` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000731", + "sortText": "000006ff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2018-02-01'" + "newText": "'Microsoft.Network/ApplicationGatewayWebApplicationFirewallPolicies@2020-06-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2018-04-01'", + "label": "'Microsoft.Network/ExpressRoutePorts@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000730", + "sortText": "00000895", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2018-04-01'" + "newText": "'Microsoft.Network/ExpressRoutePorts@2018-08-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2018-06-01'", + "label": "'Microsoft.Network/ExpressRoutePorts@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000072f", + "sortText": "00000894", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2018-06-01'" + "newText": "'Microsoft.Network/ExpressRoutePorts@2018-10-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2018-07-01'", + "label": "'Microsoft.Network/ExpressRoutePorts@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000072e", + "sortText": "00000893", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2018-07-01'" + "newText": "'Microsoft.Network/ExpressRoutePorts@2018-11-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2018-08-01'", + "label": "'Microsoft.Network/ExpressRoutePorts@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000072d", + "sortText": "00000892", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2018-08-01'" + "newText": "'Microsoft.Network/ExpressRoutePorts@2018-12-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2018-10-01'", + "label": "'Microsoft.Network/ExpressRoutePorts@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000072c", + "sortText": "00000891", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2018-10-01'" + "newText": "'Microsoft.Network/ExpressRoutePorts@2019-02-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2018-11-01'", + "label": "'Microsoft.Network/ExpressRoutePorts@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000072b", + "sortText": "00000890", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2018-11-01'" + "newText": "'Microsoft.Network/ExpressRoutePorts@2019-04-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2018-12-01'", + "label": "'Microsoft.Network/ExpressRoutePorts@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000072a", + "sortText": "0000088f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2018-12-01'" + "newText": "'Microsoft.Network/ExpressRoutePorts@2019-06-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2019-02-01'", + "label": "'Microsoft.Network/ExpressRoutePorts@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000729", + "sortText": "0000088e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2019-02-01'" + "newText": "'Microsoft.Network/ExpressRoutePorts@2019-07-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2019-04-01'", + "label": "'Microsoft.Network/ExpressRoutePorts@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000728", + "sortText": "0000088d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2019-04-01'" + "newText": "'Microsoft.Network/ExpressRoutePorts@2019-08-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2019-06-01'", + "label": "'Microsoft.Network/ExpressRoutePorts@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000727", + "sortText": "0000088c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2019-06-01'" + "newText": "'Microsoft.Network/ExpressRoutePorts@2019-09-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2019-07-01'", + "label": "'Microsoft.Network/ExpressRoutePorts@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000726", + "sortText": "0000088b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2019-07-01'" + "newText": "'Microsoft.Network/ExpressRoutePorts@2019-11-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2019-08-01'", + "label": "'Microsoft.Network/ExpressRoutePorts@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000725", + "sortText": "0000088a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2019-08-01'" + "newText": "'Microsoft.Network/ExpressRoutePorts@2019-12-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2019-09-01'", + "label": "'Microsoft.Network/ExpressRoutePorts@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000724", + "sortText": "00000889", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2019-09-01'" + "newText": "'Microsoft.Network/ExpressRoutePorts@2020-03-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2019-11-01'", + "label": "'Microsoft.Network/ExpressRoutePorts@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000723", + "sortText": "00000888", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2019-11-01'" + "newText": "'Microsoft.Network/ExpressRoutePorts@2020-04-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2019-12-01'", + "label": "'Microsoft.Network/ExpressRoutePorts@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000722", + "sortText": "00000887", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2019-12-01'" + "newText": "'Microsoft.Network/ExpressRoutePorts@2020-05-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2020-03-01'", + "label": "'Microsoft.Network/ExpressRoutePorts@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ExpressRoutePorts` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000721", + "sortText": "00000886", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2020-03-01'" + "newText": "'Microsoft.Network/ExpressRoutePorts@2020-06-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2020-04-01'", + "label": "'Microsoft.Network/FrontDoorWebApplicationFirewallPolicies@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `FrontDoorWebApplicationFirewallPolicies` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000720", + "sortText": "000008b6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2020-04-01'" + "newText": "'Microsoft.Network/FrontDoorWebApplicationFirewallPolicies@2018-08-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2020-05-01'", + "label": "'Microsoft.Network/FrontDoorWebApplicationFirewallPolicies@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `FrontDoorWebApplicationFirewallPolicies` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000071f", + "sortText": "000008b5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2020-05-01'" + "newText": "'Microsoft.Network/FrontDoorWebApplicationFirewallPolicies@2019-03-01'" } }, { - "label": "'Microsoft.Network/applicationGateways@2020-06-01'", + "label": "'Microsoft.Network/FrontDoorWebApplicationFirewallPolicies@2019-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `FrontDoorWebApplicationFirewallPolicies` \nAPI Version: `2019-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000071e", + "sortText": "000008b4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationGateways@2020-06-01'" + "newText": "'Microsoft.Network/FrontDoorWebApplicationFirewallPolicies@2019-10-01'" } }, { - "label": "'Microsoft.Network/applicationSecurityGroups@2017-09-01'", + "label": "'Microsoft.Network/FrontDoorWebApplicationFirewallPolicies@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `FrontDoorWebApplicationFirewallPolicies` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000765", + "sortText": "000008b3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationSecurityGroups@2017-09-01'" + "newText": "'Microsoft.Network/FrontDoorWebApplicationFirewallPolicies@2020-04-01'" } }, { - "label": "'Microsoft.Network/applicationSecurityGroups@2017-10-01'", + "label": "'Microsoft.Network/IpAllocations@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `IpAllocations` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000764", + "sortText": "000008bf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationSecurityGroups@2017-10-01'" + "newText": "'Microsoft.Network/IpAllocations@2020-03-01'" } }, { - "label": "'Microsoft.Network/applicationSecurityGroups@2017-11-01'", + "label": "'Microsoft.Network/IpAllocations@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2017-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `IpAllocations` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000763", + "sortText": "000008be", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationSecurityGroups@2017-11-01'" + "newText": "'Microsoft.Network/IpAllocations@2020-04-01'" } }, { - "label": "'Microsoft.Network/applicationSecurityGroups@2018-01-01'", + "label": "'Microsoft.Network/IpAllocations@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2018-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `IpAllocations` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000762", + "sortText": "000008bd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationSecurityGroups@2018-01-01'" + "newText": "'Microsoft.Network/IpAllocations@2020-05-01'" } }, { - "label": "'Microsoft.Network/applicationSecurityGroups@2018-02-01'", + "label": "'Microsoft.Network/IpAllocations@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `IpAllocations` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000761", + "sortText": "000008bc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationSecurityGroups@2018-02-01'" + "newText": "'Microsoft.Network/IpAllocations@2020-06-01'" } }, { - "label": "'Microsoft.Network/applicationSecurityGroups@2018-04-01'", + "label": "'Microsoft.Network/NetworkExperimentProfiles/Experiments@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `NetworkExperimentProfiles/Experiments` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000760", + "sortText": "00000933", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationSecurityGroups@2018-04-01'" + "newText": "'Microsoft.Network/NetworkExperimentProfiles/Experiments@2019-11-01'" } }, { - "label": "'Microsoft.Network/applicationSecurityGroups@2018-06-01'", + "label": "'Microsoft.Network/NetworkExperimentProfiles@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `NetworkExperimentProfiles` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000075f", + "sortText": "00000932", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationSecurityGroups@2018-06-01'" + "newText": "'Microsoft.Network/NetworkExperimentProfiles@2019-11-01'" } }, { - "label": "'Microsoft.Network/applicationSecurityGroups@2018-07-01'", + "label": "'Microsoft.Network/applicationGateways/privateEndpointConnections@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways/privateEndpointConnections` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000075e", + "sortText": "000006fe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationSecurityGroups@2018-07-01'" + "newText": "'Microsoft.Network/applicationGateways/privateEndpointConnections@2020-05-01'" } }, { - "label": "'Microsoft.Network/applicationSecurityGroups@2018-08-01'", + "label": "'Microsoft.Network/applicationGateways/privateEndpointConnections@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways/privateEndpointConnections` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000075d", + "sortText": "000006fd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationSecurityGroups@2018-08-01'" + "newText": "'Microsoft.Network/applicationGateways/privateEndpointConnections@2020-06-01'" } }, { - "label": "'Microsoft.Network/applicationSecurityGroups@2018-10-01'", + "label": "'Microsoft.Network/applicationGateways@2015-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2015-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000075c", + "sortText": "000006fc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationSecurityGroups@2018-10-01'" + "newText": "'Microsoft.Network/applicationGateways@2015-05-01-preview'" } }, { - "label": "'Microsoft.Network/applicationSecurityGroups@2018-11-01'", + "label": "'Microsoft.Network/applicationGateways@2015-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2015-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000075b", + "sortText": "000006fb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationSecurityGroups@2018-11-01'" + "newText": "'Microsoft.Network/applicationGateways@2015-06-15'" } }, { - "label": "'Microsoft.Network/applicationSecurityGroups@2018-12-01'", + "label": "'Microsoft.Network/applicationGateways@2016-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2016-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "0000075a", + "sortText": "000006fa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationSecurityGroups@2018-12-01'" + "newText": "'Microsoft.Network/applicationGateways@2016-03-30'" } }, { - "label": "'Microsoft.Network/applicationSecurityGroups@2019-02-01'", + "label": "'Microsoft.Network/applicationGateways@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000759", + "sortText": "000006f9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationSecurityGroups@2019-02-01'" + "newText": "'Microsoft.Network/applicationGateways@2016-06-01'" } }, { - "label": "'Microsoft.Network/applicationSecurityGroups@2019-04-01'", + "label": "'Microsoft.Network/applicationGateways@2016-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2016-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000758", + "sortText": "000006f8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationSecurityGroups@2019-04-01'" + "newText": "'Microsoft.Network/applicationGateways@2016-09-01'" } }, { - "label": "'Microsoft.Network/applicationSecurityGroups@2019-06-01'", + "label": "'Microsoft.Network/applicationGateways@2016-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2016-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000757", + "sortText": "000006f7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationSecurityGroups@2019-06-01'" + "newText": "'Microsoft.Network/applicationGateways@2016-12-01'" } }, { - "label": "'Microsoft.Network/applicationSecurityGroups@2019-07-01'", + "label": "'Microsoft.Network/applicationGateways@2017-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2017-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000756", + "sortText": "000006f6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationSecurityGroups@2019-07-01'" + "newText": "'Microsoft.Network/applicationGateways@2017-03-01'" } }, { - "label": "'Microsoft.Network/applicationSecurityGroups@2019-08-01'", + "label": "'Microsoft.Network/applicationGateways@2017-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2017-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000755", + "sortText": "000006f5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationSecurityGroups@2019-08-01'" + "newText": "'Microsoft.Network/applicationGateways@2017-06-01'" } }, { - "label": "'Microsoft.Network/applicationSecurityGroups@2019-09-01'", + "label": "'Microsoft.Network/applicationGateways@2017-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2017-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000754", + "sortText": "000006f4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationSecurityGroups@2019-09-01'" + "newText": "'Microsoft.Network/applicationGateways@2017-08-01'" } }, { - "label": "'Microsoft.Network/applicationSecurityGroups@2019-11-01'", + "label": "'Microsoft.Network/applicationGateways@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000753", + "sortText": "000006f3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationSecurityGroups@2019-11-01'" + "newText": "'Microsoft.Network/applicationGateways@2017-09-01'" } }, { - "label": "'Microsoft.Network/applicationSecurityGroups@2019-12-01'", + "label": "'Microsoft.Network/applicationGateways@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000752", + "sortText": "000006f2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationSecurityGroups@2019-12-01'" + "newText": "'Microsoft.Network/applicationGateways@2017-10-01'" } }, { - "label": "'Microsoft.Network/applicationSecurityGroups@2020-03-01'", + "label": "'Microsoft.Network/applicationGateways@2017-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2017-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000751", + "sortText": "000006f1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationSecurityGroups@2020-03-01'" + "newText": "'Microsoft.Network/applicationGateways@2017-11-01'" } }, { - "label": "'Microsoft.Network/applicationSecurityGroups@2020-04-01'", + "label": "'Microsoft.Network/applicationGateways@2018-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2018-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000750", + "sortText": "000006f0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationSecurityGroups@2020-04-01'" + "newText": "'Microsoft.Network/applicationGateways@2018-01-01'" } }, { - "label": "'Microsoft.Network/applicationSecurityGroups@2020-05-01'", + "label": "'Microsoft.Network/applicationGateways@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000074f", + "sortText": "000006ef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationSecurityGroups@2020-05-01'" + "newText": "'Microsoft.Network/applicationGateways@2018-02-01'" } }, { - "label": "'Microsoft.Network/applicationSecurityGroups@2020-06-01'", + "label": "'Microsoft.Network/applicationGateways@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000074e", + "sortText": "000006ee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/applicationSecurityGroups@2020-06-01'" + "newText": "'Microsoft.Network/applicationGateways@2018-04-01'" } }, { - "label": "'Microsoft.Network/azureFirewalls@2018-04-01'", + "label": "'Microsoft.Network/applicationGateways@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000778", + "sortText": "000006ed", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/azureFirewalls@2018-04-01'" + "newText": "'Microsoft.Network/applicationGateways@2018-06-01'" } }, { - "label": "'Microsoft.Network/azureFirewalls@2018-06-01'", + "label": "'Microsoft.Network/applicationGateways@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000777", + "sortText": "000006ec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/azureFirewalls@2018-06-01'" + "newText": "'Microsoft.Network/applicationGateways@2018-07-01'" } }, { - "label": "'Microsoft.Network/azureFirewalls@2018-07-01'", + "label": "'Microsoft.Network/applicationGateways@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000776", + "sortText": "000006eb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/azureFirewalls@2018-07-01'" + "newText": "'Microsoft.Network/applicationGateways@2018-08-01'" } }, { - "label": "'Microsoft.Network/azureFirewalls@2018-08-01'", + "label": "'Microsoft.Network/applicationGateways@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000775", + "sortText": "000006ea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/azureFirewalls@2018-08-01'" + "newText": "'Microsoft.Network/applicationGateways@2018-10-01'" } }, { - "label": "'Microsoft.Network/azureFirewalls@2018-10-01'", + "label": "'Microsoft.Network/applicationGateways@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000774", + "sortText": "000006e9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/azureFirewalls@2018-10-01'" + "newText": "'Microsoft.Network/applicationGateways@2018-11-01'" } }, { - "label": "'Microsoft.Network/azureFirewalls@2018-11-01'", + "label": "'Microsoft.Network/applicationGateways@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000773", + "sortText": "000006e8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/azureFirewalls@2018-11-01'" + "newText": "'Microsoft.Network/applicationGateways@2018-12-01'" } }, { - "label": "'Microsoft.Network/azureFirewalls@2018-12-01'", + "label": "'Microsoft.Network/applicationGateways@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000772", + "sortText": "000006e7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/azureFirewalls@2018-12-01'" + "newText": "'Microsoft.Network/applicationGateways@2019-02-01'" } }, { - "label": "'Microsoft.Network/azureFirewalls@2019-02-01'", + "label": "'Microsoft.Network/applicationGateways@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000771", + "sortText": "000006e6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/azureFirewalls@2019-02-01'" + "newText": "'Microsoft.Network/applicationGateways@2019-04-01'" } }, { - "label": "'Microsoft.Network/azureFirewalls@2019-04-01'", + "label": "'Microsoft.Network/applicationGateways@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000770", + "sortText": "000006e5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/azureFirewalls@2019-04-01'" + "newText": "'Microsoft.Network/applicationGateways@2019-06-01'" } }, { - "label": "'Microsoft.Network/azureFirewalls@2019-06-01'", + "label": "'Microsoft.Network/applicationGateways@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000076f", + "sortText": "000006e4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/azureFirewalls@2019-06-01'" + "newText": "'Microsoft.Network/applicationGateways@2019-07-01'" } }, { - "label": "'Microsoft.Network/azureFirewalls@2019-07-01'", + "label": "'Microsoft.Network/applicationGateways@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000076e", + "sortText": "000006e3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/azureFirewalls@2019-07-01'" + "newText": "'Microsoft.Network/applicationGateways@2019-08-01'" } }, { - "label": "'Microsoft.Network/azureFirewalls@2019-08-01'", + "label": "'Microsoft.Network/applicationGateways@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000076d", + "sortText": "000006e2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/azureFirewalls@2019-08-01'" + "newText": "'Microsoft.Network/applicationGateways@2019-09-01'" } }, { - "label": "'Microsoft.Network/azureFirewalls@2019-09-01'", + "label": "'Microsoft.Network/applicationGateways@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000076c", + "sortText": "000006e1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/azureFirewalls@2019-09-01'" + "newText": "'Microsoft.Network/applicationGateways@2019-11-01'" } }, { - "label": "'Microsoft.Network/azureFirewalls@2019-11-01'", + "label": "'Microsoft.Network/applicationGateways@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000076b", + "sortText": "000006e0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/azureFirewalls@2019-11-01'" + "newText": "'Microsoft.Network/applicationGateways@2019-12-01'" } }, { - "label": "'Microsoft.Network/azureFirewalls@2019-12-01'", + "label": "'Microsoft.Network/applicationGateways@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000076a", + "sortText": "000006df", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/azureFirewalls@2019-12-01'" + "newText": "'Microsoft.Network/applicationGateways@2020-03-01'" } }, { - "label": "'Microsoft.Network/azureFirewalls@2020-03-01'", + "label": "'Microsoft.Network/applicationGateways@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000769", + "sortText": "000006de", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/azureFirewalls@2020-03-01'" + "newText": "'Microsoft.Network/applicationGateways@2020-04-01'" } }, { - "label": "'Microsoft.Network/azureFirewalls@2020-04-01'", + "label": "'Microsoft.Network/applicationGateways@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000768", + "sortText": "000006dd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/azureFirewalls@2020-04-01'" + "newText": "'Microsoft.Network/applicationGateways@2020-05-01'" } }, { - "label": "'Microsoft.Network/azureFirewalls@2020-05-01'", + "label": "'Microsoft.Network/applicationGateways@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationGateways` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000767", + "sortText": "000006dc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/azureFirewalls@2020-05-01'" + "newText": "'Microsoft.Network/applicationGateways@2020-06-01'" } }, { - "label": "'Microsoft.Network/azureFirewalls@2020-06-01'", + "label": "'Microsoft.Network/applicationSecurityGroups@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000766", + "sortText": "00000723", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/azureFirewalls@2020-06-01'" + "newText": "'Microsoft.Network/applicationSecurityGroups@2017-09-01'" } }, { - "label": "'Microsoft.Network/bastionHosts@2019-04-01'", + "label": "'Microsoft.Network/applicationSecurityGroups@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `bastionHosts` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000783", + "sortText": "00000722", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/bastionHosts@2019-04-01'" + "newText": "'Microsoft.Network/applicationSecurityGroups@2017-10-01'" } }, { - "label": "'Microsoft.Network/bastionHosts@2019-06-01'", + "label": "'Microsoft.Network/applicationSecurityGroups@2017-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `bastionHosts` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2017-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000782", + "sortText": "00000721", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/bastionHosts@2019-06-01'" + "newText": "'Microsoft.Network/applicationSecurityGroups@2017-11-01'" } }, { - "label": "'Microsoft.Network/bastionHosts@2019-07-01'", + "label": "'Microsoft.Network/applicationSecurityGroups@2018-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `bastionHosts` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2018-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000781", + "sortText": "00000720", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/bastionHosts@2019-07-01'" + "newText": "'Microsoft.Network/applicationSecurityGroups@2018-01-01'" } }, { - "label": "'Microsoft.Network/bastionHosts@2019-08-01'", + "label": "'Microsoft.Network/applicationSecurityGroups@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `bastionHosts` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000780", + "sortText": "0000071f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/bastionHosts@2019-08-01'" + "newText": "'Microsoft.Network/applicationSecurityGroups@2018-02-01'" } }, { - "label": "'Microsoft.Network/bastionHosts@2019-09-01'", + "label": "'Microsoft.Network/applicationSecurityGroups@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `bastionHosts` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000077f", + "sortText": "0000071e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/bastionHosts@2019-09-01'" + "newText": "'Microsoft.Network/applicationSecurityGroups@2018-04-01'" } }, { - "label": "'Microsoft.Network/bastionHosts@2019-11-01'", + "label": "'Microsoft.Network/applicationSecurityGroups@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `bastionHosts` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000077e", + "sortText": "0000071d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/bastionHosts@2019-11-01'" + "newText": "'Microsoft.Network/applicationSecurityGroups@2018-06-01'" } }, { - "label": "'Microsoft.Network/bastionHosts@2019-12-01'", + "label": "'Microsoft.Network/applicationSecurityGroups@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `bastionHosts` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000077d", + "sortText": "0000071c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/bastionHosts@2019-12-01'" + "newText": "'Microsoft.Network/applicationSecurityGroups@2018-07-01'" } }, { - "label": "'Microsoft.Network/bastionHosts@2020-03-01'", + "label": "'Microsoft.Network/applicationSecurityGroups@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `bastionHosts` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000077c", + "sortText": "0000071b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/bastionHosts@2020-03-01'" + "newText": "'Microsoft.Network/applicationSecurityGroups@2018-08-01'" } }, { - "label": "'Microsoft.Network/bastionHosts@2020-04-01'", + "label": "'Microsoft.Network/applicationSecurityGroups@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `bastionHosts` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000077b", + "sortText": "0000071a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/bastionHosts@2020-04-01'" + "newText": "'Microsoft.Network/applicationSecurityGroups@2018-10-01'" } }, { - "label": "'Microsoft.Network/bastionHosts@2020-05-01'", + "label": "'Microsoft.Network/applicationSecurityGroups@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `bastionHosts` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000077a", + "sortText": "00000719", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/bastionHosts@2020-05-01'" + "newText": "'Microsoft.Network/applicationSecurityGroups@2018-11-01'" } }, { - "label": "'Microsoft.Network/bastionHosts@2020-06-01'", + "label": "'Microsoft.Network/applicationSecurityGroups@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `bastionHosts` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000779", + "sortText": "00000718", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/bastionHosts@2020-06-01'" + "newText": "'Microsoft.Network/applicationSecurityGroups@2018-12-01'" } }, { - "label": "'Microsoft.Network/connections@2015-05-01-preview'", + "label": "'Microsoft.Network/applicationSecurityGroups@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2015-05-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007a4", + "sortText": "00000717", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2015-05-01-preview'" + "newText": "'Microsoft.Network/applicationSecurityGroups@2019-02-01'" } }, { - "label": "'Microsoft.Network/connections@2015-06-15'", + "label": "'Microsoft.Network/applicationSecurityGroups@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2015-06-15`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007a3", + "sortText": "00000716", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2015-06-15'" + "newText": "'Microsoft.Network/applicationSecurityGroups@2019-04-01'" } }, { - "label": "'Microsoft.Network/connections@2016-03-30'", + "label": "'Microsoft.Network/applicationSecurityGroups@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2016-03-30`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007a2", + "sortText": "00000715", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2016-03-30'" + "newText": "'Microsoft.Network/applicationSecurityGroups@2019-06-01'" } }, { - "label": "'Microsoft.Network/connections@2016-06-01'", + "label": "'Microsoft.Network/applicationSecurityGroups@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007a1", + "sortText": "00000714", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2016-06-01'" + "newText": "'Microsoft.Network/applicationSecurityGroups@2019-07-01'" } }, { - "label": "'Microsoft.Network/connections@2016-09-01'", + "label": "'Microsoft.Network/applicationSecurityGroups@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2016-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007a0", + "sortText": "00000713", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2016-09-01'" + "newText": "'Microsoft.Network/applicationSecurityGroups@2019-08-01'" } }, { - "label": "'Microsoft.Network/connections@2016-12-01'", + "label": "'Microsoft.Network/applicationSecurityGroups@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2016-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000079f", + "sortText": "00000712", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2016-12-01'" + "newText": "'Microsoft.Network/applicationSecurityGroups@2019-09-01'" } }, { - "label": "'Microsoft.Network/connections@2017-03-01'", + "label": "'Microsoft.Network/applicationSecurityGroups@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2017-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000079e", + "sortText": "00000711", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2017-03-01'" + "newText": "'Microsoft.Network/applicationSecurityGroups@2019-11-01'" } }, { - "label": "'Microsoft.Network/connections@2017-06-01'", + "label": "'Microsoft.Network/applicationSecurityGroups@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2017-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000079d", + "sortText": "00000710", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2017-06-01'" + "newText": "'Microsoft.Network/applicationSecurityGroups@2019-12-01'" } }, { - "label": "'Microsoft.Network/connections@2017-08-01'", + "label": "'Microsoft.Network/applicationSecurityGroups@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2017-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000079c", + "sortText": "0000070f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2017-08-01'" + "newText": "'Microsoft.Network/applicationSecurityGroups@2020-03-01'" } }, { - "label": "'Microsoft.Network/connections@2017-09-01'", + "label": "'Microsoft.Network/applicationSecurityGroups@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000079b", + "sortText": "0000070e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2017-09-01'" + "newText": "'Microsoft.Network/applicationSecurityGroups@2020-04-01'" } }, { - "label": "'Microsoft.Network/connections@2017-10-01'", + "label": "'Microsoft.Network/applicationSecurityGroups@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000079a", + "sortText": "0000070d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2017-10-01'" + "newText": "'Microsoft.Network/applicationSecurityGroups@2020-05-01'" } }, { - "label": "'Microsoft.Network/connections@2017-11-01'", + "label": "'Microsoft.Network/applicationSecurityGroups@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2017-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `applicationSecurityGroups` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000799", + "sortText": "0000070c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2017-11-01'" + "newText": "'Microsoft.Network/applicationSecurityGroups@2020-06-01'" } }, { - "label": "'Microsoft.Network/connections@2018-01-01'", + "label": "'Microsoft.Network/azureFirewalls@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2018-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000798", + "sortText": "00000736", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2018-01-01'" + "newText": "'Microsoft.Network/azureFirewalls@2018-04-01'" } }, { - "label": "'Microsoft.Network/connections@2018-02-01'", + "label": "'Microsoft.Network/azureFirewalls@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000797", + "sortText": "00000735", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2018-02-01'" + "newText": "'Microsoft.Network/azureFirewalls@2018-06-01'" } }, { - "label": "'Microsoft.Network/connections@2018-04-01'", + "label": "'Microsoft.Network/azureFirewalls@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000796", + "sortText": "00000734", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2018-04-01'" + "newText": "'Microsoft.Network/azureFirewalls@2018-07-01'" } }, { - "label": "'Microsoft.Network/connections@2018-06-01'", + "label": "'Microsoft.Network/azureFirewalls@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000795", + "sortText": "00000733", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2018-06-01'" + "newText": "'Microsoft.Network/azureFirewalls@2018-08-01'" } }, { - "label": "'Microsoft.Network/connections@2018-07-01'", + "label": "'Microsoft.Network/azureFirewalls@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000794", + "sortText": "00000732", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2018-07-01'" + "newText": "'Microsoft.Network/azureFirewalls@2018-10-01'" } }, { - "label": "'Microsoft.Network/connections@2018-08-01'", + "label": "'Microsoft.Network/azureFirewalls@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000793", + "sortText": "00000731", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2018-08-01'" + "newText": "'Microsoft.Network/azureFirewalls@2018-11-01'" } }, { - "label": "'Microsoft.Network/connections@2018-10-01'", + "label": "'Microsoft.Network/azureFirewalls@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000792", + "sortText": "00000730", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2018-10-01'" + "newText": "'Microsoft.Network/azureFirewalls@2018-12-01'" } }, { - "label": "'Microsoft.Network/connections@2018-11-01'", + "label": "'Microsoft.Network/azureFirewalls@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000791", + "sortText": "0000072f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2018-11-01'" + "newText": "'Microsoft.Network/azureFirewalls@2019-02-01'" } }, { - "label": "'Microsoft.Network/connections@2018-12-01'", + "label": "'Microsoft.Network/azureFirewalls@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000790", + "sortText": "0000072e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2018-12-01'" + "newText": "'Microsoft.Network/azureFirewalls@2019-04-01'" } }, { - "label": "'Microsoft.Network/connections@2019-02-01'", + "label": "'Microsoft.Network/azureFirewalls@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000078f", + "sortText": "0000072d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2019-02-01'" + "newText": "'Microsoft.Network/azureFirewalls@2019-06-01'" } }, { - "label": "'Microsoft.Network/connections@2019-04-01'", + "label": "'Microsoft.Network/azureFirewalls@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000078e", + "sortText": "0000072c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2019-04-01'" + "newText": "'Microsoft.Network/azureFirewalls@2019-07-01'" } }, { - "label": "'Microsoft.Network/connections@2019-06-01'", + "label": "'Microsoft.Network/azureFirewalls@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000078d", + "sortText": "0000072b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2019-06-01'" + "newText": "'Microsoft.Network/azureFirewalls@2019-08-01'" } }, { - "label": "'Microsoft.Network/connections@2019-07-01'", + "label": "'Microsoft.Network/azureFirewalls@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000078c", + "sortText": "0000072a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2019-07-01'" + "newText": "'Microsoft.Network/azureFirewalls@2019-09-01'" } }, { - "label": "'Microsoft.Network/connections@2019-08-01'", + "label": "'Microsoft.Network/azureFirewalls@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000078b", + "sortText": "00000729", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2019-08-01'" + "newText": "'Microsoft.Network/azureFirewalls@2019-11-01'" } }, { - "label": "'Microsoft.Network/connections@2019-09-01'", + "label": "'Microsoft.Network/azureFirewalls@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000078a", + "sortText": "00000728", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2019-09-01'" + "newText": "'Microsoft.Network/azureFirewalls@2019-12-01'" } }, { - "label": "'Microsoft.Network/connections@2019-11-01'", + "label": "'Microsoft.Network/azureFirewalls@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000789", + "sortText": "00000727", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2019-11-01'" + "newText": "'Microsoft.Network/azureFirewalls@2020-03-01'" } }, { - "label": "'Microsoft.Network/connections@2019-12-01'", + "label": "'Microsoft.Network/azureFirewalls@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000788", + "sortText": "00000726", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2019-12-01'" + "newText": "'Microsoft.Network/azureFirewalls@2020-04-01'" } }, { - "label": "'Microsoft.Network/connections@2020-03-01'", + "label": "'Microsoft.Network/azureFirewalls@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000787", + "sortText": "00000725", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2020-03-01'" + "newText": "'Microsoft.Network/azureFirewalls@2020-05-01'" } }, { - "label": "'Microsoft.Network/connections@2020-04-01'", + "label": "'Microsoft.Network/azureFirewalls@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `azureFirewalls` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000786", + "sortText": "00000724", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2020-04-01'" + "newText": "'Microsoft.Network/azureFirewalls@2020-06-01'" } }, { - "label": "'Microsoft.Network/connections@2020-05-01'", + "label": "'Microsoft.Network/bastionHosts@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `bastionHosts` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000785", + "sortText": "00000741", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2020-05-01'" + "newText": "'Microsoft.Network/bastionHosts@2019-04-01'" } }, { - "label": "'Microsoft.Network/connections@2020-06-01'", + "label": "'Microsoft.Network/bastionHosts@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `bastionHosts` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000784", + "sortText": "00000740", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/connections@2020-06-01'" + "newText": "'Microsoft.Network/bastionHosts@2019-06-01'" } }, { - "label": "'Microsoft.Network/customIpPrefixes@2020-06-01'", + "label": "'Microsoft.Network/bastionHosts@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `customIpPrefixes` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `bastionHosts` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007a5", + "sortText": "0000073f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/customIpPrefixes@2020-06-01'" + "newText": "'Microsoft.Network/bastionHosts@2019-07-01'" } }, { - "label": "'Microsoft.Network/ddosCustomPolicies@2018-11-01'", + "label": "'Microsoft.Network/bastionHosts@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `bastionHosts` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007b3", + "sortText": "0000073e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosCustomPolicies@2018-11-01'" + "newText": "'Microsoft.Network/bastionHosts@2019-08-01'" } }, { - "label": "'Microsoft.Network/ddosCustomPolicies@2018-12-01'", + "label": "'Microsoft.Network/bastionHosts@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `bastionHosts` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007b2", + "sortText": "0000073d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosCustomPolicies@2018-12-01'" + "newText": "'Microsoft.Network/bastionHosts@2019-09-01'" } }, { - "label": "'Microsoft.Network/ddosCustomPolicies@2019-02-01'", + "label": "'Microsoft.Network/bastionHosts@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `bastionHosts` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007b1", + "sortText": "0000073c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosCustomPolicies@2019-02-01'" + "newText": "'Microsoft.Network/bastionHosts@2019-11-01'" } }, { - "label": "'Microsoft.Network/ddosCustomPolicies@2019-04-01'", + "label": "'Microsoft.Network/bastionHosts@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `bastionHosts` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007b0", + "sortText": "0000073b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosCustomPolicies@2019-04-01'" + "newText": "'Microsoft.Network/bastionHosts@2019-12-01'" } }, { - "label": "'Microsoft.Network/ddosCustomPolicies@2019-06-01'", + "label": "'Microsoft.Network/bastionHosts@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `bastionHosts` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007af", + "sortText": "0000073a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosCustomPolicies@2019-06-01'" + "newText": "'Microsoft.Network/bastionHosts@2020-03-01'" } }, { - "label": "'Microsoft.Network/ddosCustomPolicies@2019-07-01'", + "label": "'Microsoft.Network/bastionHosts@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `bastionHosts` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007ae", + "sortText": "00000739", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosCustomPolicies@2019-07-01'" + "newText": "'Microsoft.Network/bastionHosts@2020-04-01'" } }, { - "label": "'Microsoft.Network/ddosCustomPolicies@2019-08-01'", + "label": "'Microsoft.Network/bastionHosts@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `bastionHosts` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007ad", + "sortText": "00000738", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosCustomPolicies@2019-08-01'" + "newText": "'Microsoft.Network/bastionHosts@2020-05-01'" } }, { - "label": "'Microsoft.Network/ddosCustomPolicies@2019-09-01'", + "label": "'Microsoft.Network/bastionHosts@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `bastionHosts` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007ac", + "sortText": "00000737", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosCustomPolicies@2019-09-01'" + "newText": "'Microsoft.Network/bastionHosts@2020-06-01'" } }, { - "label": "'Microsoft.Network/ddosCustomPolicies@2019-11-01'", + "label": "'Microsoft.Network/connections@2015-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2015-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000007ab", + "sortText": "00000762", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosCustomPolicies@2019-11-01'" + "newText": "'Microsoft.Network/connections@2015-05-01-preview'" } }, { - "label": "'Microsoft.Network/ddosCustomPolicies@2019-12-01'", + "label": "'Microsoft.Network/connections@2015-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2015-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "000007aa", + "sortText": "00000761", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosCustomPolicies@2019-12-01'" + "newText": "'Microsoft.Network/connections@2015-06-15'" } }, { - "label": "'Microsoft.Network/ddosCustomPolicies@2020-03-01'", + "label": "'Microsoft.Network/connections@2016-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2016-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "000007a9", + "sortText": "00000760", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosCustomPolicies@2020-03-01'" + "newText": "'Microsoft.Network/connections@2016-03-30'" } }, { - "label": "'Microsoft.Network/ddosCustomPolicies@2020-04-01'", + "label": "'Microsoft.Network/connections@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007a8", + "sortText": "0000075f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosCustomPolicies@2020-04-01'" + "newText": "'Microsoft.Network/connections@2016-06-01'" } }, { - "label": "'Microsoft.Network/ddosCustomPolicies@2020-05-01'", + "label": "'Microsoft.Network/connections@2016-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2016-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007a7", + "sortText": "0000075e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosCustomPolicies@2020-05-01'" + "newText": "'Microsoft.Network/connections@2016-09-01'" } }, { - "label": "'Microsoft.Network/ddosCustomPolicies@2020-06-01'", + "label": "'Microsoft.Network/connections@2016-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2016-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007a6", + "sortText": "0000075d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosCustomPolicies@2020-06-01'" + "newText": "'Microsoft.Network/connections@2016-12-01'" } }, { - "label": "'Microsoft.Network/ddosProtectionPlans@2018-02-01'", + "label": "'Microsoft.Network/connections@2017-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2017-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007c7", + "sortText": "0000075c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosProtectionPlans@2018-02-01'" + "newText": "'Microsoft.Network/connections@2017-03-01'" } }, { - "label": "'Microsoft.Network/ddosProtectionPlans@2018-04-01'", + "label": "'Microsoft.Network/connections@2017-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2017-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007c6", + "sortText": "0000075b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosProtectionPlans@2018-04-01'" + "newText": "'Microsoft.Network/connections@2017-06-01'" } }, { - "label": "'Microsoft.Network/ddosProtectionPlans@2018-06-01'", + "label": "'Microsoft.Network/connections@2017-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2017-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007c5", + "sortText": "0000075a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosProtectionPlans@2018-06-01'" + "newText": "'Microsoft.Network/connections@2017-08-01'" } }, { - "label": "'Microsoft.Network/ddosProtectionPlans@2018-07-01'", + "label": "'Microsoft.Network/connections@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007c4", + "sortText": "00000759", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosProtectionPlans@2018-07-01'" + "newText": "'Microsoft.Network/connections@2017-09-01'" } }, { - "label": "'Microsoft.Network/ddosProtectionPlans@2018-08-01'", + "label": "'Microsoft.Network/connections@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007c3", + "sortText": "00000758", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosProtectionPlans@2018-08-01'" + "newText": "'Microsoft.Network/connections@2017-10-01'" } }, { - "label": "'Microsoft.Network/ddosProtectionPlans@2018-10-01'", + "label": "'Microsoft.Network/connections@2017-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2017-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007c2", + "sortText": "00000757", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosProtectionPlans@2018-10-01'" + "newText": "'Microsoft.Network/connections@2017-11-01'" } }, { - "label": "'Microsoft.Network/ddosProtectionPlans@2018-11-01'", + "label": "'Microsoft.Network/connections@2018-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2018-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007c1", + "sortText": "00000756", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosProtectionPlans@2018-11-01'" + "newText": "'Microsoft.Network/connections@2018-01-01'" } }, { - "label": "'Microsoft.Network/ddosProtectionPlans@2018-12-01'", + "label": "'Microsoft.Network/connections@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007c0", + "sortText": "00000755", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosProtectionPlans@2018-12-01'" + "newText": "'Microsoft.Network/connections@2018-02-01'" } }, { - "label": "'Microsoft.Network/ddosProtectionPlans@2019-02-01'", + "label": "'Microsoft.Network/connections@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007bf", + "sortText": "00000754", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosProtectionPlans@2019-02-01'" + "newText": "'Microsoft.Network/connections@2018-04-01'" } }, { - "label": "'Microsoft.Network/ddosProtectionPlans@2019-04-01'", + "label": "'Microsoft.Network/connections@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007be", + "sortText": "00000753", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosProtectionPlans@2019-04-01'" + "newText": "'Microsoft.Network/connections@2018-06-01'" } }, { - "label": "'Microsoft.Network/ddosProtectionPlans@2019-06-01'", + "label": "'Microsoft.Network/connections@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007bd", + "sortText": "00000752", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosProtectionPlans@2019-06-01'" + "newText": "'Microsoft.Network/connections@2018-07-01'" } }, { - "label": "'Microsoft.Network/ddosProtectionPlans@2019-07-01'", + "label": "'Microsoft.Network/connections@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007bc", + "sortText": "00000751", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosProtectionPlans@2019-07-01'" + "newText": "'Microsoft.Network/connections@2018-08-01'" } }, { - "label": "'Microsoft.Network/ddosProtectionPlans@2019-08-01'", + "label": "'Microsoft.Network/connections@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007bb", + "sortText": "00000750", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosProtectionPlans@2019-08-01'" + "newText": "'Microsoft.Network/connections@2018-10-01'" } }, { - "label": "'Microsoft.Network/ddosProtectionPlans@2019-09-01'", + "label": "'Microsoft.Network/connections@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007ba", + "sortText": "0000074f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosProtectionPlans@2019-09-01'" + "newText": "'Microsoft.Network/connections@2018-11-01'" } }, { - "label": "'Microsoft.Network/ddosProtectionPlans@2019-11-01'", + "label": "'Microsoft.Network/connections@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007b9", + "sortText": "0000074e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosProtectionPlans@2019-11-01'" + "newText": "'Microsoft.Network/connections@2018-12-01'" } }, { - "label": "'Microsoft.Network/ddosProtectionPlans@2019-12-01'", + "label": "'Microsoft.Network/connections@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007b8", + "sortText": "0000074d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosProtectionPlans@2019-12-01'" + "newText": "'Microsoft.Network/connections@2019-02-01'" } }, { - "label": "'Microsoft.Network/ddosProtectionPlans@2020-03-01'", + "label": "'Microsoft.Network/connections@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007b7", + "sortText": "0000074c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosProtectionPlans@2020-03-01'" + "newText": "'Microsoft.Network/connections@2019-04-01'" } }, { - "label": "'Microsoft.Network/ddosProtectionPlans@2020-04-01'", + "label": "'Microsoft.Network/connections@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007b6", + "sortText": "0000074b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosProtectionPlans@2020-04-01'" + "newText": "'Microsoft.Network/connections@2019-06-01'" } }, { - "label": "'Microsoft.Network/ddosProtectionPlans@2020-05-01'", + "label": "'Microsoft.Network/connections@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007b5", + "sortText": "0000074a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosProtectionPlans@2020-05-01'" + "newText": "'Microsoft.Network/connections@2019-07-01'" } }, { - "label": "'Microsoft.Network/ddosProtectionPlans@2020-06-01'", + "label": "'Microsoft.Network/connections@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007b4", + "sortText": "00000749", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ddosProtectionPlans@2020-06-01'" + "newText": "'Microsoft.Network/connections@2019-08-01'" } }, { - "label": "'Microsoft.Network/dnsZones/A@2016-04-01'", + "label": "'Microsoft.Network/connections@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/A` \nAPI Version: `2016-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007d2", + "sortText": "00000748", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/A@2016-04-01'" + "newText": "'Microsoft.Network/connections@2019-09-01'" } }, { - "label": "'Microsoft.Network/dnsZones/A@2017-09-01'", + "label": "'Microsoft.Network/connections@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/A` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007d1", + "sortText": "00000747", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/A@2017-09-01'" + "newText": "'Microsoft.Network/connections@2019-11-01'" } }, { - "label": "'Microsoft.Network/dnsZones/A@2017-10-01'", + "label": "'Microsoft.Network/connections@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/A` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007d0", + "sortText": "00000746", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/A@2017-10-01'" + "newText": "'Microsoft.Network/connections@2019-12-01'" } }, { - "label": "'Microsoft.Network/dnsZones/A@2018-03-01-preview'", + "label": "'Microsoft.Network/connections@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/A` \nAPI Version: `2018-03-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007cf", + "sortText": "00000745", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/A@2018-03-01-preview'" + "newText": "'Microsoft.Network/connections@2020-03-01'" } }, { - "label": "'Microsoft.Network/dnsZones/A@2018-05-01'", + "label": "'Microsoft.Network/connections@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/A` \nAPI Version: `2018-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007ce", + "sortText": "00000744", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/A@2018-05-01'" + "newText": "'Microsoft.Network/connections@2020-04-01'" } }, { - "label": "'Microsoft.Network/dnsZones/AAAA@2016-04-01'", + "label": "'Microsoft.Network/connections@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/AAAA` \nAPI Version: `2016-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007d8", + "sortText": "00000743", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/AAAA@2016-04-01'" + "newText": "'Microsoft.Network/connections@2020-05-01'" } }, { - "label": "'Microsoft.Network/dnsZones/AAAA@2017-09-01'", + "label": "'Microsoft.Network/connections@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/AAAA` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `connections` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007d7", + "sortText": "00000742", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/AAAA@2017-09-01'" + "newText": "'Microsoft.Network/connections@2020-06-01'" } }, { - "label": "'Microsoft.Network/dnsZones/AAAA@2017-10-01'", + "label": "'Microsoft.Network/customIpPrefixes@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/AAAA` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `customIpPrefixes` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007d6", + "sortText": "00000763", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/AAAA@2017-10-01'" + "newText": "'Microsoft.Network/customIpPrefixes@2020-06-01'" } }, { - "label": "'Microsoft.Network/dnsZones/AAAA@2018-03-01-preview'", + "label": "'Microsoft.Network/ddosCustomPolicies@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/AAAA` \nAPI Version: `2018-03-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007d5", + "sortText": "00000771", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/AAAA@2018-03-01-preview'" + "newText": "'Microsoft.Network/ddosCustomPolicies@2018-11-01'" } }, { - "label": "'Microsoft.Network/dnsZones/AAAA@2018-05-01'", + "label": "'Microsoft.Network/ddosCustomPolicies@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/AAAA` \nAPI Version: `2018-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007d4", + "sortText": "00000770", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/AAAA@2018-05-01'" + "newText": "'Microsoft.Network/ddosCustomPolicies@2018-12-01'" } }, { - "label": "'Microsoft.Network/dnsZones/CAA@2017-09-01'", + "label": "'Microsoft.Network/ddosCustomPolicies@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/CAA` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007dd", + "sortText": "0000076f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/CAA@2017-09-01'" + "newText": "'Microsoft.Network/ddosCustomPolicies@2019-02-01'" } }, { - "label": "'Microsoft.Network/dnsZones/CAA@2017-10-01'", + "label": "'Microsoft.Network/ddosCustomPolicies@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/CAA` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007dc", + "sortText": "0000076e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/CAA@2017-10-01'" + "newText": "'Microsoft.Network/ddosCustomPolicies@2019-04-01'" } }, { - "label": "'Microsoft.Network/dnsZones/CAA@2018-03-01-preview'", + "label": "'Microsoft.Network/ddosCustomPolicies@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/CAA` \nAPI Version: `2018-03-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007db", + "sortText": "0000076d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/CAA@2018-03-01-preview'" + "newText": "'Microsoft.Network/ddosCustomPolicies@2019-06-01'" } }, { - "label": "'Microsoft.Network/dnsZones/CAA@2018-05-01'", + "label": "'Microsoft.Network/ddosCustomPolicies@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/CAA` \nAPI Version: `2018-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007da", + "sortText": "0000076c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/CAA@2018-05-01'" + "newText": "'Microsoft.Network/ddosCustomPolicies@2019-07-01'" } }, { - "label": "'Microsoft.Network/dnsZones/CNAME@2016-04-01'", + "label": "'Microsoft.Network/ddosCustomPolicies@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/CNAME` \nAPI Version: `2016-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007e2", + "sortText": "0000076b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/CNAME@2016-04-01'" + "newText": "'Microsoft.Network/ddosCustomPolicies@2019-08-01'" } }, { - "label": "'Microsoft.Network/dnsZones/CNAME@2017-09-01'", + "label": "'Microsoft.Network/ddosCustomPolicies@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/CNAME` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007e1", + "sortText": "0000076a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/CNAME@2017-09-01'" + "newText": "'Microsoft.Network/ddosCustomPolicies@2019-09-01'" } }, { - "label": "'Microsoft.Network/dnsZones/CNAME@2017-10-01'", + "label": "'Microsoft.Network/ddosCustomPolicies@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/CNAME` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007e0", + "sortText": "00000769", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/CNAME@2017-10-01'" + "newText": "'Microsoft.Network/ddosCustomPolicies@2019-11-01'" } }, { - "label": "'Microsoft.Network/dnsZones/CNAME@2018-03-01-preview'", + "label": "'Microsoft.Network/ddosCustomPolicies@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/CNAME` \nAPI Version: `2018-03-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007df", + "sortText": "00000768", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/CNAME@2018-03-01-preview'" + "newText": "'Microsoft.Network/ddosCustomPolicies@2019-12-01'" } }, { - "label": "'Microsoft.Network/dnsZones/CNAME@2018-05-01'", + "label": "'Microsoft.Network/ddosCustomPolicies@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/CNAME` \nAPI Version: `2018-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007de", + "sortText": "00000767", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/CNAME@2018-05-01'" + "newText": "'Microsoft.Network/ddosCustomPolicies@2020-03-01'" } }, { - "label": "'Microsoft.Network/dnsZones/MX@2016-04-01'", + "label": "'Microsoft.Network/ddosCustomPolicies@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/MX` \nAPI Version: `2016-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007e8", + "sortText": "00000766", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/MX@2016-04-01'" + "newText": "'Microsoft.Network/ddosCustomPolicies@2020-04-01'" } }, { - "label": "'Microsoft.Network/dnsZones/MX@2017-09-01'", + "label": "'Microsoft.Network/ddosCustomPolicies@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/MX` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007e7", + "sortText": "00000765", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/MX@2017-09-01'" + "newText": "'Microsoft.Network/ddosCustomPolicies@2020-05-01'" } }, { - "label": "'Microsoft.Network/dnsZones/MX@2017-10-01'", + "label": "'Microsoft.Network/ddosCustomPolicies@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/MX` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosCustomPolicies` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007e6", + "sortText": "00000764", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/MX@2017-10-01'" + "newText": "'Microsoft.Network/ddosCustomPolicies@2020-06-01'" } }, { - "label": "'Microsoft.Network/dnsZones/MX@2018-03-01-preview'", + "label": "'Microsoft.Network/ddosProtectionPlans@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/MX` \nAPI Version: `2018-03-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007e5", + "sortText": "00000785", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/MX@2018-03-01-preview'" + "newText": "'Microsoft.Network/ddosProtectionPlans@2018-02-01'" } }, { - "label": "'Microsoft.Network/dnsZones/MX@2018-05-01'", + "label": "'Microsoft.Network/ddosProtectionPlans@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/MX` \nAPI Version: `2018-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007e4", + "sortText": "00000784", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/MX@2018-05-01'" + "newText": "'Microsoft.Network/ddosProtectionPlans@2018-04-01'" } }, { - "label": "'Microsoft.Network/dnsZones/NS@2016-04-01'", + "label": "'Microsoft.Network/ddosProtectionPlans@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/NS` \nAPI Version: `2016-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007ee", + "sortText": "00000783", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/NS@2016-04-01'" + "newText": "'Microsoft.Network/ddosProtectionPlans@2018-06-01'" } }, { - "label": "'Microsoft.Network/dnsZones/NS@2017-09-01'", + "label": "'Microsoft.Network/ddosProtectionPlans@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/NS` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007ed", + "sortText": "00000782", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/NS@2017-09-01'" + "newText": "'Microsoft.Network/ddosProtectionPlans@2018-07-01'" } }, { - "label": "'Microsoft.Network/dnsZones/NS@2017-10-01'", + "label": "'Microsoft.Network/ddosProtectionPlans@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/NS` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007ec", + "sortText": "00000781", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/NS@2017-10-01'" + "newText": "'Microsoft.Network/ddosProtectionPlans@2018-08-01'" } }, { - "label": "'Microsoft.Network/dnsZones/NS@2018-03-01-preview'", + "label": "'Microsoft.Network/ddosProtectionPlans@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/NS` \nAPI Version: `2018-03-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007eb", + "sortText": "00000780", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/NS@2018-03-01-preview'" + "newText": "'Microsoft.Network/ddosProtectionPlans@2018-10-01'" } }, { - "label": "'Microsoft.Network/dnsZones/NS@2018-05-01'", + "label": "'Microsoft.Network/ddosProtectionPlans@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/NS` \nAPI Version: `2018-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007ea", + "sortText": "0000077f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/NS@2018-05-01'" + "newText": "'Microsoft.Network/ddosProtectionPlans@2018-11-01'" } }, { - "label": "'Microsoft.Network/dnsZones/PTR@2016-04-01'", + "label": "'Microsoft.Network/ddosProtectionPlans@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/PTR` \nAPI Version: `2016-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007f4", + "sortText": "0000077e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/PTR@2016-04-01'" + "newText": "'Microsoft.Network/ddosProtectionPlans@2018-12-01'" } }, { - "label": "'Microsoft.Network/dnsZones/PTR@2017-09-01'", + "label": "'Microsoft.Network/ddosProtectionPlans@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/PTR` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007f3", + "sortText": "0000077d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/PTR@2017-09-01'" + "newText": "'Microsoft.Network/ddosProtectionPlans@2019-02-01'" } }, { - "label": "'Microsoft.Network/dnsZones/PTR@2017-10-01'", + "label": "'Microsoft.Network/ddosProtectionPlans@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/PTR` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007f2", + "sortText": "0000077c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/PTR@2017-10-01'" + "newText": "'Microsoft.Network/ddosProtectionPlans@2019-04-01'" } }, { - "label": "'Microsoft.Network/dnsZones/PTR@2018-03-01-preview'", + "label": "'Microsoft.Network/ddosProtectionPlans@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/PTR` \nAPI Version: `2018-03-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007f1", + "sortText": "0000077b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/PTR@2018-03-01-preview'" + "newText": "'Microsoft.Network/ddosProtectionPlans@2019-06-01'" } }, { - "label": "'Microsoft.Network/dnsZones/PTR@2018-05-01'", + "label": "'Microsoft.Network/ddosProtectionPlans@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/PTR` \nAPI Version: `2018-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007f0", + "sortText": "0000077a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/PTR@2018-05-01'" + "newText": "'Microsoft.Network/ddosProtectionPlans@2019-07-01'" } }, { - "label": "'Microsoft.Network/dnsZones/SOA@2016-04-01'", + "label": "'Microsoft.Network/ddosProtectionPlans@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/SOA` \nAPI Version: `2016-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007fa", + "sortText": "00000779", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/SOA@2016-04-01'" + "newText": "'Microsoft.Network/ddosProtectionPlans@2019-08-01'" } }, { - "label": "'Microsoft.Network/dnsZones/SOA@2017-09-01'", + "label": "'Microsoft.Network/ddosProtectionPlans@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/SOA` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007f9", + "sortText": "00000778", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/SOA@2017-09-01'" + "newText": "'Microsoft.Network/ddosProtectionPlans@2019-09-01'" } }, { - "label": "'Microsoft.Network/dnsZones/SOA@2017-10-01'", + "label": "'Microsoft.Network/ddosProtectionPlans@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/SOA` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007f8", + "sortText": "00000777", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/SOA@2017-10-01'" + "newText": "'Microsoft.Network/ddosProtectionPlans@2019-11-01'" } }, { - "label": "'Microsoft.Network/dnsZones/SOA@2018-03-01-preview'", + "label": "'Microsoft.Network/ddosProtectionPlans@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/SOA` \nAPI Version: `2018-03-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007f7", + "sortText": "00000776", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/SOA@2018-03-01-preview'" + "newText": "'Microsoft.Network/ddosProtectionPlans@2019-12-01'" } }, { - "label": "'Microsoft.Network/dnsZones/SOA@2018-05-01'", + "label": "'Microsoft.Network/ddosProtectionPlans@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/SOA` \nAPI Version: `2018-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007f6", + "sortText": "00000775", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/SOA@2018-05-01'" + "newText": "'Microsoft.Network/ddosProtectionPlans@2020-03-01'" } }, { - "label": "'Microsoft.Network/dnsZones/SRV@2016-04-01'", + "label": "'Microsoft.Network/ddosProtectionPlans@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/SRV` \nAPI Version: `2016-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000800", + "sortText": "00000774", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/SRV@2016-04-01'" + "newText": "'Microsoft.Network/ddosProtectionPlans@2020-04-01'" } }, { - "label": "'Microsoft.Network/dnsZones/SRV@2017-09-01'", + "label": "'Microsoft.Network/ddosProtectionPlans@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/SRV` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007ff", + "sortText": "00000773", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/SRV@2017-09-01'" + "newText": "'Microsoft.Network/ddosProtectionPlans@2020-05-01'" } }, { - "label": "'Microsoft.Network/dnsZones/SRV@2017-10-01'", + "label": "'Microsoft.Network/ddosProtectionPlans@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/SRV` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ddosProtectionPlans` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007fe", + "sortText": "00000772", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/SRV@2017-10-01'" + "newText": "'Microsoft.Network/ddosProtectionPlans@2020-06-01'" } }, { - "label": "'Microsoft.Network/dnsZones/SRV@2018-03-01-preview'", + "label": "'Microsoft.Network/dnsZones/A@2016-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/SRV` \nAPI Version: `2018-03-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/A` \nAPI Version: `2016-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007fd", + "sortText": "00000790", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/SRV@2018-03-01-preview'" + "newText": "'Microsoft.Network/dnsZones/A@2016-04-01'" } }, { - "label": "'Microsoft.Network/dnsZones/SRV@2018-05-01'", + "label": "'Microsoft.Network/dnsZones/A@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/SRV` \nAPI Version: `2018-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/A` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007fc", + "sortText": "0000078f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/SRV@2018-05-01'" + "newText": "'Microsoft.Network/dnsZones/A@2017-09-01'" } }, { - "label": "'Microsoft.Network/dnsZones/TXT@2016-04-01'", + "label": "'Microsoft.Network/dnsZones/A@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/TXT` \nAPI Version: `2016-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/A` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000806", + "sortText": "0000078e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/TXT@2016-04-01'" + "newText": "'Microsoft.Network/dnsZones/A@2017-10-01'" } }, { - "label": "'Microsoft.Network/dnsZones/TXT@2017-09-01'", + "label": "'Microsoft.Network/dnsZones/A@2018-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/TXT` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/A` \nAPI Version: `2018-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000805", + "sortText": "0000078d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/TXT@2017-09-01'" + "newText": "'Microsoft.Network/dnsZones/A@2018-03-01-preview'" } }, { - "label": "'Microsoft.Network/dnsZones/TXT@2017-10-01'", + "label": "'Microsoft.Network/dnsZones/A@2018-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/TXT` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/A` \nAPI Version: `2018-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000804", + "sortText": "0000078c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/TXT@2017-10-01'" + "newText": "'Microsoft.Network/dnsZones/A@2018-05-01'" } }, { - "label": "'Microsoft.Network/dnsZones/TXT@2018-03-01-preview'", + "label": "'Microsoft.Network/dnsZones/AAAA@2016-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/TXT` \nAPI Version: `2018-03-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/AAAA` \nAPI Version: `2016-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000803", + "sortText": "00000796", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/TXT@2018-03-01-preview'" + "newText": "'Microsoft.Network/dnsZones/AAAA@2016-04-01'" } }, { - "label": "'Microsoft.Network/dnsZones/TXT@2018-05-01'", + "label": "'Microsoft.Network/dnsZones/AAAA@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/TXT` \nAPI Version: `2018-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/AAAA` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000802", + "sortText": "00000795", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones/TXT@2018-05-01'" + "newText": "'Microsoft.Network/dnsZones/AAAA@2017-09-01'" } }, { - "label": "'Microsoft.Network/dnsZones@2016-04-01'", + "label": "'Microsoft.Network/dnsZones/AAAA@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones` \nAPI Version: `2016-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/AAAA` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007cc", + "sortText": "00000794", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones@2016-04-01'" + "newText": "'Microsoft.Network/dnsZones/AAAA@2017-10-01'" } }, { - "label": "'Microsoft.Network/dnsZones@2017-09-01'", + "label": "'Microsoft.Network/dnsZones/AAAA@2018-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/AAAA` \nAPI Version: `2018-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000007cb", + "sortText": "00000793", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones@2017-09-01'" + "newText": "'Microsoft.Network/dnsZones/AAAA@2018-03-01-preview'" } }, { - "label": "'Microsoft.Network/dnsZones@2017-10-01'", + "label": "'Microsoft.Network/dnsZones/AAAA@2018-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/AAAA` \nAPI Version: `2018-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007ca", + "sortText": "00000792", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones@2017-10-01'" + "newText": "'Microsoft.Network/dnsZones/AAAA@2018-05-01'" } }, { - "label": "'Microsoft.Network/dnsZones@2018-03-01-preview'", + "label": "'Microsoft.Network/dnsZones/CAA@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones` \nAPI Version: `2018-03-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/CAA` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007c9", + "sortText": "0000079b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones@2018-03-01-preview'" + "newText": "'Microsoft.Network/dnsZones/CAA@2017-09-01'" } }, { - "label": "'Microsoft.Network/dnsZones@2018-05-01'", + "label": "'Microsoft.Network/dnsZones/CAA@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnsZones` \nAPI Version: `2018-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/CAA` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007c8", + "sortText": "0000079a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnsZones@2018-05-01'" + "newText": "'Microsoft.Network/dnsZones/CAA@2017-10-01'" } }, { - "label": "'Microsoft.Network/dnszones/A@2015-05-04-preview'", + "label": "'Microsoft.Network/dnsZones/CAA@2018-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnszones/A` \nAPI Version: `2015-05-04-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/CAA` \nAPI Version: `2018-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000007d3", + "sortText": "00000799", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnszones/A@2015-05-04-preview'" + "newText": "'Microsoft.Network/dnsZones/CAA@2018-03-01-preview'" } }, { - "label": "'Microsoft.Network/dnszones/AAAA@2015-05-04-preview'", + "label": "'Microsoft.Network/dnsZones/CAA@2018-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnszones/AAAA` \nAPI Version: `2015-05-04-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/CAA` \nAPI Version: `2018-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007d9", + "sortText": "00000798", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnszones/AAAA@2015-05-04-preview'" + "newText": "'Microsoft.Network/dnsZones/CAA@2018-05-01'" } }, { - "label": "'Microsoft.Network/dnszones/CNAME@2015-05-04-preview'", + "label": "'Microsoft.Network/dnsZones/CNAME@2016-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnszones/CNAME` \nAPI Version: `2015-05-04-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/CNAME` \nAPI Version: `2016-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007e3", + "sortText": "000007a0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnszones/CNAME@2015-05-04-preview'" + "newText": "'Microsoft.Network/dnsZones/CNAME@2016-04-01'" } }, { - "label": "'Microsoft.Network/dnszones/MX@2015-05-04-preview'", + "label": "'Microsoft.Network/dnsZones/CNAME@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnszones/MX` \nAPI Version: `2015-05-04-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/CNAME` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007e9", + "sortText": "0000079f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnszones/MX@2015-05-04-preview'" + "newText": "'Microsoft.Network/dnsZones/CNAME@2017-09-01'" } }, { - "label": "'Microsoft.Network/dnszones/NS@2015-05-04-preview'", + "label": "'Microsoft.Network/dnsZones/CNAME@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnszones/NS` \nAPI Version: `2015-05-04-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/CNAME` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007ef", + "sortText": "0000079e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnszones/NS@2015-05-04-preview'" + "newText": "'Microsoft.Network/dnsZones/CNAME@2017-10-01'" } }, { - "label": "'Microsoft.Network/dnszones/PTR@2015-05-04-preview'", + "label": "'Microsoft.Network/dnsZones/CNAME@2018-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnszones/PTR` \nAPI Version: `2015-05-04-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/CNAME` \nAPI Version: `2018-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000007f5", + "sortText": "0000079d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnszones/PTR@2015-05-04-preview'" + "newText": "'Microsoft.Network/dnsZones/CNAME@2018-03-01-preview'" } }, { - "label": "'Microsoft.Network/dnszones/SOA@2015-05-04-preview'", + "label": "'Microsoft.Network/dnsZones/CNAME@2018-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnszones/SOA` \nAPI Version: `2015-05-04-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/CNAME` \nAPI Version: `2018-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007fb", + "sortText": "0000079c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnszones/SOA@2015-05-04-preview'" + "newText": "'Microsoft.Network/dnsZones/CNAME@2018-05-01'" } }, { - "label": "'Microsoft.Network/dnszones/SRV@2015-05-04-preview'", + "label": "'Microsoft.Network/dnsZones/MX@2016-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnszones/SRV` \nAPI Version: `2015-05-04-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/MX` \nAPI Version: `2016-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000801", + "sortText": "000007a6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnszones/SRV@2015-05-04-preview'" + "newText": "'Microsoft.Network/dnsZones/MX@2016-04-01'" } }, { - "label": "'Microsoft.Network/dnszones/TXT@2015-05-04-preview'", + "label": "'Microsoft.Network/dnsZones/MX@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnszones/TXT` \nAPI Version: `2015-05-04-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/MX` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000807", + "sortText": "000007a5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnszones/TXT@2015-05-04-preview'" + "newText": "'Microsoft.Network/dnsZones/MX@2017-09-01'" } }, { - "label": "'Microsoft.Network/dnszones@2015-05-04-preview'", + "label": "'Microsoft.Network/dnsZones/MX@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dnszones` \nAPI Version: `2015-05-04-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/MX` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000007cd", + "sortText": "000007a4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dnszones@2015-05-04-preview'" + "newText": "'Microsoft.Network/dnsZones/MX@2017-10-01'" } }, { - "label": "'Microsoft.Network/dscpConfigurations@2020-06-01'", + "label": "'Microsoft.Network/dnsZones/MX@2018-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `dscpConfigurations` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/MX` \nAPI Version: `2018-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000808", + "sortText": "000007a3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/dscpConfigurations@2020-06-01'" + "newText": "'Microsoft.Network/dnsZones/MX@2018-03-01-preview'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2015-05-01-preview'", + "label": "'Microsoft.Network/dnsZones/MX@2018-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2015-05-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/MX` \nAPI Version: `2018-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000084a", + "sortText": "000007a2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2015-05-01-preview'" + "newText": "'Microsoft.Network/dnsZones/MX@2018-05-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2015-06-15'", + "label": "'Microsoft.Network/dnsZones/NS@2016-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2015-06-15`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/NS` \nAPI Version: `2016-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000849", + "sortText": "000007ac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2015-06-15'" + "newText": "'Microsoft.Network/dnsZones/NS@2016-04-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2016-03-30'", + "label": "'Microsoft.Network/dnsZones/NS@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2016-03-30`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/NS` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000848", + "sortText": "000007ab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2016-03-30'" + "newText": "'Microsoft.Network/dnsZones/NS@2017-09-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2016-06-01'", + "label": "'Microsoft.Network/dnsZones/NS@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/NS` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000847", + "sortText": "000007aa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2016-06-01'" + "newText": "'Microsoft.Network/dnsZones/NS@2017-10-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2016-09-01'", + "label": "'Microsoft.Network/dnsZones/NS@2018-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2016-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/NS` \nAPI Version: `2018-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000846", + "sortText": "000007a9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2016-09-01'" + "newText": "'Microsoft.Network/dnsZones/NS@2018-03-01-preview'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2016-12-01'", + "label": "'Microsoft.Network/dnsZones/NS@2018-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2016-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/NS` \nAPI Version: `2018-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000845", + "sortText": "000007a8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2016-12-01'" + "newText": "'Microsoft.Network/dnsZones/NS@2018-05-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2017-03-01'", + "label": "'Microsoft.Network/dnsZones/PTR@2016-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2017-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/PTR` \nAPI Version: `2016-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000844", + "sortText": "000007b2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2017-03-01'" + "newText": "'Microsoft.Network/dnsZones/PTR@2016-04-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2017-06-01'", + "label": "'Microsoft.Network/dnsZones/PTR@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2017-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/PTR` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000843", + "sortText": "000007b1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2017-06-01'" + "newText": "'Microsoft.Network/dnsZones/PTR@2017-09-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2017-08-01'", + "label": "'Microsoft.Network/dnsZones/PTR@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2017-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/PTR` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000842", + "sortText": "000007b0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2017-08-01'" + "newText": "'Microsoft.Network/dnsZones/PTR@2017-10-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2017-09-01'", + "label": "'Microsoft.Network/dnsZones/PTR@2018-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/PTR` \nAPI Version: `2018-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000841", + "sortText": "000007af", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2017-09-01'" + "newText": "'Microsoft.Network/dnsZones/PTR@2018-03-01-preview'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2017-10-01'", + "label": "'Microsoft.Network/dnsZones/PTR@2018-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/PTR` \nAPI Version: `2018-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000840", + "sortText": "000007ae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2017-10-01'" + "newText": "'Microsoft.Network/dnsZones/PTR@2018-05-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2017-11-01'", + "label": "'Microsoft.Network/dnsZones/SOA@2016-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2017-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/SOA` \nAPI Version: `2016-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000083f", + "sortText": "000007b8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2017-11-01'" + "newText": "'Microsoft.Network/dnsZones/SOA@2016-04-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-01-01'", + "label": "'Microsoft.Network/dnsZones/SOA@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2018-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/SOA` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000083e", + "sortText": "000007b7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-01-01'" + "newText": "'Microsoft.Network/dnsZones/SOA@2017-09-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-02-01'", + "label": "'Microsoft.Network/dnsZones/SOA@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/SOA` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000083d", + "sortText": "000007b6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-02-01'" + "newText": "'Microsoft.Network/dnsZones/SOA@2017-10-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-04-01'", + "label": "'Microsoft.Network/dnsZones/SOA@2018-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/SOA` \nAPI Version: `2018-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000083c", + "sortText": "000007b5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-04-01'" + "newText": "'Microsoft.Network/dnsZones/SOA@2018-03-01-preview'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-06-01'", + "label": "'Microsoft.Network/dnsZones/SOA@2018-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/SOA` \nAPI Version: `2018-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000083b", + "sortText": "000007b4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-06-01'" + "newText": "'Microsoft.Network/dnsZones/SOA@2018-05-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-07-01'", + "label": "'Microsoft.Network/dnsZones/SRV@2016-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/SRV` \nAPI Version: `2016-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000083a", + "sortText": "000007be", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-07-01'" + "newText": "'Microsoft.Network/dnsZones/SRV@2016-04-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-08-01'", + "label": "'Microsoft.Network/dnsZones/SRV@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/SRV` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000839", + "sortText": "000007bd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-08-01'" + "newText": "'Microsoft.Network/dnsZones/SRV@2017-09-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-10-01'", + "label": "'Microsoft.Network/dnsZones/SRV@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/SRV` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000838", + "sortText": "000007bc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-10-01'" + "newText": "'Microsoft.Network/dnsZones/SRV@2017-10-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-11-01'", + "label": "'Microsoft.Network/dnsZones/SRV@2018-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/SRV` \nAPI Version: `2018-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000837", + "sortText": "000007bb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-11-01'" + "newText": "'Microsoft.Network/dnsZones/SRV@2018-03-01-preview'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-12-01'", + "label": "'Microsoft.Network/dnsZones/SRV@2018-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/SRV` \nAPI Version: `2018-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000836", + "sortText": "000007ba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-12-01'" + "newText": "'Microsoft.Network/dnsZones/SRV@2018-05-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-02-01'", + "label": "'Microsoft.Network/dnsZones/TXT@2016-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/TXT` \nAPI Version: `2016-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000835", + "sortText": "000007c4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-02-01'" + "newText": "'Microsoft.Network/dnsZones/TXT@2016-04-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-04-01'", + "label": "'Microsoft.Network/dnsZones/TXT@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/TXT` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000834", + "sortText": "000007c3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-04-01'" + "newText": "'Microsoft.Network/dnsZones/TXT@2017-09-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-06-01'", + "label": "'Microsoft.Network/dnsZones/TXT@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/TXT` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000833", + "sortText": "000007c2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-06-01'" + "newText": "'Microsoft.Network/dnsZones/TXT@2017-10-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-07-01'", + "label": "'Microsoft.Network/dnsZones/TXT@2018-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/TXT` \nAPI Version: `2018-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000832", + "sortText": "000007c1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-07-01'" + "newText": "'Microsoft.Network/dnsZones/TXT@2018-03-01-preview'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-08-01'", + "label": "'Microsoft.Network/dnsZones/TXT@2018-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones/TXT` \nAPI Version: `2018-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000831", + "sortText": "000007c0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-08-01'" + "newText": "'Microsoft.Network/dnsZones/TXT@2018-05-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-09-01'", + "label": "'Microsoft.Network/dnsZones@2016-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones` \nAPI Version: `2016-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000830", + "sortText": "0000078a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-09-01'" + "newText": "'Microsoft.Network/dnsZones@2016-04-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-11-01'", + "label": "'Microsoft.Network/dnsZones@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000082f", + "sortText": "00000789", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-11-01'" + "newText": "'Microsoft.Network/dnsZones@2017-09-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-12-01'", + "label": "'Microsoft.Network/dnsZones@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000082e", + "sortText": "00000788", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-12-01'" + "newText": "'Microsoft.Network/dnsZones@2017-10-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2020-03-01'", + "label": "'Microsoft.Network/dnsZones@2018-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones` \nAPI Version: `2018-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000082d", + "sortText": "00000787", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2020-03-01'" + "newText": "'Microsoft.Network/dnsZones@2018-03-01-preview'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2020-04-01'", + "label": "'Microsoft.Network/dnsZones@2018-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnsZones` \nAPI Version: `2018-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000082c", + "sortText": "00000786", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2020-04-01'" + "newText": "'Microsoft.Network/dnsZones@2018-05-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2020-05-01'", + "label": "'Microsoft.Network/dnszones/A@2015-05-04-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnszones/A` \nAPI Version: `2015-05-04-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000082b", + "sortText": "00000791", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2020-05-01'" + "newText": "'Microsoft.Network/dnszones/A@2015-05-04-preview'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2020-06-01'", + "label": "'Microsoft.Network/dnszones/AAAA@2015-05-04-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnszones/AAAA` \nAPI Version: `2015-05-04-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000082a", + "sortText": "00000797", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2020-06-01'" + "newText": "'Microsoft.Network/dnszones/AAAA@2015-05-04-preview'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-02-01'", + "label": "'Microsoft.Network/dnszones/CNAME@2015-05-04-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnszones/CNAME` \nAPI Version: `2015-05-04-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000087f", + "sortText": "000007a1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-02-01'" + "newText": "'Microsoft.Network/dnszones/CNAME@2015-05-04-preview'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-04-01'", + "label": "'Microsoft.Network/dnszones/MX@2015-05-04-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnszones/MX` \nAPI Version: `2015-05-04-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000087e", + "sortText": "000007a7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-04-01'" + "newText": "'Microsoft.Network/dnszones/MX@2015-05-04-preview'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-06-01'", + "label": "'Microsoft.Network/dnszones/NS@2015-05-04-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnszones/NS` \nAPI Version: `2015-05-04-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000087d", + "sortText": "000007ad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-06-01'" + "newText": "'Microsoft.Network/dnszones/NS@2015-05-04-preview'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-07-01'", + "label": "'Microsoft.Network/dnszones/PTR@2015-05-04-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnszones/PTR` \nAPI Version: `2015-05-04-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000087c", + "sortText": "000007b3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-07-01'" + "newText": "'Microsoft.Network/dnszones/PTR@2015-05-04-preview'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-08-01'", + "label": "'Microsoft.Network/dnszones/SOA@2015-05-04-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnszones/SOA` \nAPI Version: `2015-05-04-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000087b", + "sortText": "000007b9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-08-01'" + "newText": "'Microsoft.Network/dnszones/SOA@2015-05-04-preview'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-10-01'", + "label": "'Microsoft.Network/dnszones/SRV@2015-05-04-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnszones/SRV` \nAPI Version: `2015-05-04-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000087a", + "sortText": "000007bf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-10-01'" + "newText": "'Microsoft.Network/dnszones/SRV@2015-05-04-preview'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-11-01'", + "label": "'Microsoft.Network/dnszones/TXT@2015-05-04-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnszones/TXT` \nAPI Version: `2015-05-04-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000879", + "sortText": "000007c5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-11-01'" + "newText": "'Microsoft.Network/dnszones/TXT@2015-05-04-preview'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-12-01'", + "label": "'Microsoft.Network/dnszones@2015-05-04-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dnszones` \nAPI Version: `2015-05-04-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000878", + "sortText": "0000078b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-12-01'" + "newText": "'Microsoft.Network/dnszones@2015-05-04-preview'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-02-01'", + "label": "'Microsoft.Network/dscpConfigurations@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `dscpConfigurations` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000877", + "sortText": "000007c6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-02-01'" + "newText": "'Microsoft.Network/dscpConfigurations@2020-06-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-04-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2015-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2015-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000876", + "sortText": "00000808", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-04-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2015-05-01-preview'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-06-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2015-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2015-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000875", + "sortText": "00000807", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-06-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2015-06-15'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-07-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2016-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2016-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "00000874", + "sortText": "00000806", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-07-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2016-03-30'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-08-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000873", + "sortText": "00000805", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-08-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2016-06-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-09-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2016-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2016-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000872", + "sortText": "00000804", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-09-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2016-09-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-11-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2016-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2016-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000871", + "sortText": "00000803", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-11-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2016-12-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-12-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2017-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2017-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000870", + "sortText": "00000802", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-12-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2017-03-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2020-03-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2017-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2017-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000086f", + "sortText": "00000801", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2020-03-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2017-06-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2020-04-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2017-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2017-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000086e", + "sortText": "00000800", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2020-04-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2017-08-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2020-05-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000086d", + "sortText": "000007ff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2020-05-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2017-09-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2020-06-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000086c", + "sortText": "000007fe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2020-06-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2017-10-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2015-05-01-preview'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2017-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2015-05-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2017-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000086b", + "sortText": "000007fd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2015-05-01-preview'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2017-11-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2015-06-15'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2015-06-15`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2018-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000086a", + "sortText": "000007fc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2015-06-15'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-01-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2016-03-30'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2016-03-30`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000869", + "sortText": "000007fb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2016-03-30'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-02-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2016-06-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000868", + "sortText": "000007fa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2016-06-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-04-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2016-09-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2016-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000867", + "sortText": "000007f9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2016-09-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-06-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2016-12-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2016-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000866", + "sortText": "000007f8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2016-12-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-07-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2017-03-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2017-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000865", + "sortText": "000007f7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2017-03-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-08-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2017-06-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2017-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000864", + "sortText": "000007f6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2017-06-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-10-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2017-08-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2017-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000863", + "sortText": "000007f5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2017-08-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-11-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2017-09-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000862", + "sortText": "000007f4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2017-09-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2018-12-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2017-10-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000861", + "sortText": "000007f3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2017-10-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-02-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2017-11-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2017-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000860", + "sortText": "000007f2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2017-11-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-04-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2018-01-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2018-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000085f", + "sortText": "000007f1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2018-01-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-06-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2018-02-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000085e", + "sortText": "000007f0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2018-02-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-07-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2018-04-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000085d", + "sortText": "000007ef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2018-04-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-08-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2018-06-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000085c", + "sortText": "000007ee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2018-06-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-09-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2018-07-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000085b", + "sortText": "000007ed", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2018-07-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-11-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2018-08-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000085a", + "sortText": "000007ec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2018-08-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2019-12-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2018-10-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000859", + "sortText": "000007eb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2018-10-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2020-03-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2018-11-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000858", + "sortText": "000007ea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2018-11-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2020-04-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2018-12-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000857", + "sortText": "000007e9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2018-12-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2020-05-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2019-02-01'", + "label": "'Microsoft.Network/expressRouteCircuits/authorizations@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/authorizations` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000856", + "sortText": "000007e8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2019-02-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/authorizations@2020-06-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2019-04-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000855", + "sortText": "0000083d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2019-04-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-02-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2019-06-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000854", + "sortText": "0000083c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2019-06-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-04-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2019-07-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000853", + "sortText": "0000083b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2019-07-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-06-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2019-08-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000852", + "sortText": "0000083a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2019-08-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-07-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2019-09-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000851", + "sortText": "00000839", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2019-09-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-08-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2019-11-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000850", + "sortText": "00000838", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2019-11-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-10-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2019-12-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000084f", + "sortText": "00000837", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2019-12-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-11-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2020-03-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000084e", + "sortText": "00000836", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2020-03-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2018-12-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2020-04-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000084d", + "sortText": "00000835", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2020-04-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-02-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2020-05-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000084c", + "sortText": "00000834", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2020-05-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-04-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits/peerings@2020-06-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000084b", + "sortText": "00000833", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2020-06-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-06-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2015-05-01-preview'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2015-05-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000829", + "sortText": "00000832", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2015-05-01-preview'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-07-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2015-06-15'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2015-06-15`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000828", + "sortText": "00000831", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2015-06-15'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-08-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2016-03-30'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2016-03-30`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000827", + "sortText": "00000830", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2016-03-30'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-09-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2016-06-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000826", + "sortText": "0000082f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2016-06-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-11-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2016-09-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2016-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000825", + "sortText": "0000082e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2016-09-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2019-12-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2016-12-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2016-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000824", + "sortText": "0000082d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2016-12-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2020-03-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2017-03-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2017-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000823", + "sortText": "0000082c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2017-03-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2020-04-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2017-06-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2017-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000822", + "sortText": "0000082b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2017-06-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2020-05-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2017-08-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2017-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings/connections` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000821", + "sortText": "0000082a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2017-08-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings/connections@2020-06-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2017-09-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2015-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2015-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000820", + "sortText": "00000829", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2017-09-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2015-05-01-preview'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2017-10-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2015-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2015-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000081f", + "sortText": "00000828", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2017-10-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2015-06-15'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2017-11-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2016-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2017-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2016-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "0000081e", + "sortText": "00000827", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2017-11-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2016-03-30'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2018-01-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2018-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000081d", + "sortText": "00000826", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2018-01-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2016-06-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2018-02-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2016-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2016-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000081c", + "sortText": "00000825", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2018-02-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2016-09-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2018-04-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2016-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2016-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000081b", + "sortText": "00000824", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2018-04-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2016-12-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2018-06-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2017-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2017-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000081a", + "sortText": "00000823", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2018-06-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2017-03-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2018-07-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2017-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2017-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000819", + "sortText": "00000822", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2018-07-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2017-06-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2018-08-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2017-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2017-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000818", + "sortText": "00000821", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2018-08-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2017-08-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2018-10-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000817", + "sortText": "00000820", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2018-10-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2017-09-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2018-11-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000816", + "sortText": "0000081f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2018-11-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2017-10-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2018-12-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2017-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2017-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000815", + "sortText": "0000081e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2018-12-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2017-11-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2019-02-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2018-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2018-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000814", + "sortText": "0000081d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2019-02-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2018-01-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2019-04-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000813", + "sortText": "0000081c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2019-04-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2018-02-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2019-06-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000812", + "sortText": "0000081b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2019-06-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2018-04-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2019-07-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000811", + "sortText": "0000081a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2019-07-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2018-06-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2019-08-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000810", + "sortText": "00000819", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2019-08-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2018-07-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2019-09-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000080f", + "sortText": "00000818", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2019-09-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2018-08-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2019-11-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000080e", + "sortText": "00000817", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2019-11-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2018-10-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2019-12-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000080d", + "sortText": "00000816", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2019-12-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2018-11-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2020-03-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000080c", + "sortText": "00000815", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2020-03-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2018-12-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2020-04-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000080b", + "sortText": "00000814", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2020-04-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2019-02-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2020-05-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000080a", + "sortText": "00000813", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2020-05-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2019-04-01'" } }, { - "label": "'Microsoft.Network/expressRouteCircuits@2020-06-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000809", + "sortText": "00000812", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCircuits@2020-06-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2019-06-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-02-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008a7", + "sortText": "00000811", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-02-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2019-07-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-04-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008a6", + "sortText": "00000810", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-04-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2019-08-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-06-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008a5", + "sortText": "0000080f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-06-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2019-09-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-07-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008a4", + "sortText": "0000080e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-07-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2019-11-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-08-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008a3", + "sortText": "0000080d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-08-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2019-12-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-10-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008a2", + "sortText": "0000080c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-10-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2020-03-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-11-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008a1", + "sortText": "0000080b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-11-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2020-04-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-12-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008a0", + "sortText": "0000080a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-12-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2020-05-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-02-01'", + "label": "'Microsoft.Network/expressRouteCircuits/peerings@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits/peerings` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000089f", + "sortText": "00000809", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-02-01'" + "newText": "'Microsoft.Network/expressRouteCircuits/peerings@2020-06-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-04-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2015-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2015-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000089e", + "sortText": "000007e7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-04-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2015-05-01-preview'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-06-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2015-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2015-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000089d", + "sortText": "000007e6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-06-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2015-06-15'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-07-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2016-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2016-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "0000089c", + "sortText": "000007e5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-07-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2016-03-30'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-08-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000089b", + "sortText": "000007e4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-08-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2016-06-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-09-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2016-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2016-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000089a", + "sortText": "000007e3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-09-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2016-09-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-11-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2016-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2016-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000899", + "sortText": "000007e2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-11-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2016-12-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-12-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2017-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2017-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000898", + "sortText": "000007e1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-12-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2017-03-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2020-03-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2017-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2017-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000897", + "sortText": "000007e0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2020-03-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2017-06-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2020-04-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2017-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2017-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000896", + "sortText": "000007df", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2020-04-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2017-08-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2020-05-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000895", + "sortText": "000007de", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2020-05-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2017-09-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2020-06-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000894", + "sortText": "000007dd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2020-06-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2017-10-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections@2018-02-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2017-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2017-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000893", + "sortText": "000007dc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections@2018-02-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2017-11-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections@2018-04-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2018-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2018-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000892", + "sortText": "000007db", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections@2018-04-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2018-01-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections@2018-06-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000891", + "sortText": "000007da", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections@2018-06-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2018-02-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections@2018-07-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000890", + "sortText": "000007d9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections@2018-07-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2018-04-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections@2018-08-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000088f", + "sortText": "000007d8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections@2018-08-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2018-06-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections@2018-10-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000088e", + "sortText": "000007d7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections@2018-10-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2018-07-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections@2018-11-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000088d", + "sortText": "000007d6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections@2018-11-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2018-08-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections@2018-12-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000088c", + "sortText": "000007d5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections@2018-12-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2018-10-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections@2019-02-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000088b", + "sortText": "000007d4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections@2019-02-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2018-11-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections@2019-04-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000088a", + "sortText": "000007d3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections@2019-04-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2018-12-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections@2019-06-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000889", + "sortText": "000007d2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections@2019-06-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2019-02-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections@2019-07-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000888", + "sortText": "000007d1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections@2019-07-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2019-04-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections@2019-08-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000887", + "sortText": "000007d0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections@2019-08-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2019-06-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections@2019-09-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000886", + "sortText": "000007cf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections@2019-09-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2019-07-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections@2019-11-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000885", + "sortText": "000007ce", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections@2019-11-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2019-08-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections@2019-12-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000884", + "sortText": "000007cd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections@2019-12-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2019-09-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections@2020-03-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000883", + "sortText": "000007cc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections@2020-03-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2019-11-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections@2020-04-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000882", + "sortText": "000007cb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections@2020-04-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2019-12-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections@2020-05-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000881", + "sortText": "000007ca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections@2020-05-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2020-03-01'" } }, { - "label": "'Microsoft.Network/expressRouteCrossConnections@2020-06-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000880", + "sortText": "000007c9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteCrossConnections@2020-06-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2020-04-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2018-08-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008c7", + "sortText": "000007c8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2018-08-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2020-05-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2018-10-01'", + "label": "'Microsoft.Network/expressRouteCircuits@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCircuits` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008c6", + "sortText": "000007c7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2018-10-01'" + "newText": "'Microsoft.Network/expressRouteCircuits@2020-06-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2018-11-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008c5", + "sortText": "00000865", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2018-11-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-02-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2018-12-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008c4", + "sortText": "00000864", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2018-12-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-04-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-02-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008c3", + "sortText": "00000863", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-02-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-06-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-04-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008c2", + "sortText": "00000862", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-04-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-07-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-06-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008c1", + "sortText": "00000861", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-06-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-08-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-07-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008c0", + "sortText": "00000860", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-07-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-10-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-08-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008bf", + "sortText": "0000085f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-08-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-11-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-09-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008be", + "sortText": "0000085e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-09-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2018-12-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-11-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008bd", + "sortText": "0000085d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-11-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-02-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-12-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008bc", + "sortText": "0000085c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-12-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-04-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2020-03-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008bb", + "sortText": "0000085b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2020-03-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-06-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2020-04-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008ba", + "sortText": "0000085a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2020-04-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-07-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2020-05-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008b9", + "sortText": "00000859", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2020-05-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-08-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2020-06-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008b8", + "sortText": "00000858", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2020-06-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-09-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways@2018-08-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008b7", + "sortText": "00000857", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways@2018-08-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-11-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways@2018-10-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008b6", + "sortText": "00000856", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways@2018-10-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2019-12-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways@2018-11-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008b5", + "sortText": "00000855", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways@2018-11-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2020-03-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways@2018-12-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008b4", + "sortText": "00000854", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways@2018-12-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2020-04-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways@2019-02-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008b3", + "sortText": "00000853", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways@2019-02-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2020-05-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways@2019-04-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections/peerings@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections/peerings` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008b2", + "sortText": "00000852", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways@2019-04-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections/peerings@2020-06-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways@2019-06-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008b1", + "sortText": "00000851", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways@2019-06-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections@2018-02-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways@2019-07-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008b0", + "sortText": "00000850", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways@2019-07-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections@2018-04-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways@2019-08-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008af", + "sortText": "0000084f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways@2019-08-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections@2018-06-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways@2019-09-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008ae", + "sortText": "0000084e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways@2019-09-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections@2018-07-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways@2019-11-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008ad", + "sortText": "0000084d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways@2019-11-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections@2018-08-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways@2019-12-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008ac", + "sortText": "0000084c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways@2019-12-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections@2018-10-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways@2020-03-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008ab", + "sortText": "0000084b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways@2020-03-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections@2018-11-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways@2020-04-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008aa", + "sortText": "0000084a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways@2020-04-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections@2018-12-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways@2020-05-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008a9", + "sortText": "00000849", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways@2020-05-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections@2019-02-01'" } }, { - "label": "'Microsoft.Network/expressRouteGateways@2020-06-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008a8", + "sortText": "00000848", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/expressRouteGateways@2020-06-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections@2019-04-01'" } }, { - "label": "'Microsoft.Network/firewallPolicies/ruleCollectionGroups@2020-05-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies/ruleCollectionGroups` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008e3", + "sortText": "00000847", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/firewallPolicies/ruleCollectionGroups@2020-05-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections@2019-06-01'" } }, { - "label": "'Microsoft.Network/firewallPolicies/ruleCollectionGroups@2020-06-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies/ruleCollectionGroups` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008e2", + "sortText": "00000846", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/firewallPolicies/ruleCollectionGroups@2020-06-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections@2019-07-01'" } }, { - "label": "'Microsoft.Network/firewallPolicies/ruleGroups@2019-06-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies/ruleGroups` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008eb", + "sortText": "00000845", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/firewallPolicies/ruleGroups@2019-06-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections@2019-08-01'" } }, { - "label": "'Microsoft.Network/firewallPolicies/ruleGroups@2019-07-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies/ruleGroups` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008ea", + "sortText": "00000844", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/firewallPolicies/ruleGroups@2019-07-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections@2019-09-01'" } }, { - "label": "'Microsoft.Network/firewallPolicies/ruleGroups@2019-08-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies/ruleGroups` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008e9", + "sortText": "00000843", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/firewallPolicies/ruleGroups@2019-08-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections@2019-11-01'" } }, { - "label": "'Microsoft.Network/firewallPolicies/ruleGroups@2019-09-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies/ruleGroups` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008e8", + "sortText": "00000842", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/firewallPolicies/ruleGroups@2019-09-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections@2019-12-01'" } }, { - "label": "'Microsoft.Network/firewallPolicies/ruleGroups@2019-11-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies/ruleGroups` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008e7", + "sortText": "00000841", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/firewallPolicies/ruleGroups@2019-11-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections@2020-03-01'" } }, { - "label": "'Microsoft.Network/firewallPolicies/ruleGroups@2019-12-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies/ruleGroups` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008e6", + "sortText": "00000840", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/firewallPolicies/ruleGroups@2019-12-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections@2020-04-01'" } }, { - "label": "'Microsoft.Network/firewallPolicies/ruleGroups@2020-03-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies/ruleGroups` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008e5", + "sortText": "0000083f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/firewallPolicies/ruleGroups@2020-03-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections@2020-05-01'" } }, { - "label": "'Microsoft.Network/firewallPolicies/ruleGroups@2020-04-01'", + "label": "'Microsoft.Network/expressRouteCrossConnections@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies/ruleGroups` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteCrossConnections` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008e4", + "sortText": "0000083e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/firewallPolicies/ruleGroups@2020-04-01'" + "newText": "'Microsoft.Network/expressRouteCrossConnections@2020-06-01'" } }, { - "label": "'Microsoft.Network/firewallPolicies@2019-06-01'", + "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008e1", + "sortText": "00000885", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/firewallPolicies@2019-06-01'" + "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2018-08-01'" } }, { - "label": "'Microsoft.Network/firewallPolicies@2019-07-01'", + "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008e0", + "sortText": "00000884", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/firewallPolicies@2019-07-01'" + "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2018-10-01'" } }, { - "label": "'Microsoft.Network/firewallPolicies@2019-08-01'", + "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008df", + "sortText": "00000883", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/firewallPolicies@2019-08-01'" + "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2018-11-01'" } }, { - "label": "'Microsoft.Network/firewallPolicies@2019-09-01'", + "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008de", + "sortText": "00000882", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/firewallPolicies@2019-09-01'" + "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2018-12-01'" } }, { - "label": "'Microsoft.Network/firewallPolicies@2019-11-01'", + "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008dd", + "sortText": "00000881", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/firewallPolicies@2019-11-01'" + "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-02-01'" } }, { - "label": "'Microsoft.Network/firewallPolicies@2019-12-01'", + "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008dc", + "sortText": "00000880", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/firewallPolicies@2019-12-01'" + "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-04-01'" } }, { - "label": "'Microsoft.Network/firewallPolicies@2020-03-01'", + "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008db", + "sortText": "0000087f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/firewallPolicies@2020-03-01'" + "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-06-01'" } }, { - "label": "'Microsoft.Network/firewallPolicies@2020-04-01'", + "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008da", + "sortText": "0000087e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/firewallPolicies@2020-04-01'" + "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-07-01'" } }, { - "label": "'Microsoft.Network/firewallPolicies@2020-05-01'", + "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008d9", + "sortText": "0000087d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/firewallPolicies@2020-05-01'" + "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-08-01'" } }, { - "label": "'Microsoft.Network/firewallPolicies@2020-06-01'", + "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008d8", + "sortText": "0000087c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/firewallPolicies@2020-06-01'" + "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-09-01'" } }, { - "label": "'Microsoft.Network/frontDoors/rulesEngines@2020-01-01'", + "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `frontDoors/rulesEngines` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008f4", + "sortText": "0000087b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/frontDoors/rulesEngines@2020-01-01'" + "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-11-01'" } }, { - "label": "'Microsoft.Network/frontDoors/rulesEngines@2020-04-01'", + "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `frontDoors/rulesEngines` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008f3", + "sortText": "0000087a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/frontDoors/rulesEngines@2020-04-01'" + "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2019-12-01'" } }, { - "label": "'Microsoft.Network/frontDoors/rulesEngines@2020-05-01'", + "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `frontDoors/rulesEngines` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008f2", + "sortText": "00000879", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/frontDoors/rulesEngines@2020-05-01'" + "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2020-03-01'" } }, { - "label": "'Microsoft.Network/frontDoors@2018-08-01'", + "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `frontDoors` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008f1", + "sortText": "00000878", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/frontDoors@2018-08-01'" + "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2020-04-01'" } }, { - "label": "'Microsoft.Network/frontDoors@2019-04-01'", + "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `frontDoors` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008f0", + "sortText": "00000877", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/frontDoors@2019-04-01'" + "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2020-05-01'" } }, { - "label": "'Microsoft.Network/frontDoors@2019-05-01'", + "label": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `frontDoors` \nAPI Version: `2019-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways/expressRouteConnections` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008ef", + "sortText": "00000876", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/frontDoors@2019-05-01'" + "newText": "'Microsoft.Network/expressRouteGateways/expressRouteConnections@2020-06-01'" } }, { - "label": "'Microsoft.Network/frontDoors@2020-01-01'", + "label": "'Microsoft.Network/expressRouteGateways@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `frontDoors` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008ee", + "sortText": "00000875", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/frontDoors@2020-01-01'" + "newText": "'Microsoft.Network/expressRouteGateways@2018-08-01'" } }, { - "label": "'Microsoft.Network/frontDoors@2020-04-01'", + "label": "'Microsoft.Network/expressRouteGateways@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `frontDoors` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008ed", + "sortText": "00000874", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/frontDoors@2020-04-01'" + "newText": "'Microsoft.Network/expressRouteGateways@2018-10-01'" } }, { - "label": "'Microsoft.Network/frontDoors@2020-05-01'", + "label": "'Microsoft.Network/expressRouteGateways@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `frontDoors` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008ec", + "sortText": "00000873", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/frontDoors@2020-05-01'" + "newText": "'Microsoft.Network/expressRouteGateways@2018-11-01'" } }, { - "label": "'Microsoft.Network/interfaceEndpoints@2018-08-01'", + "label": "'Microsoft.Network/expressRouteGateways@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `interfaceEndpoints` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008fd", + "sortText": "00000872", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/interfaceEndpoints@2018-08-01'" + "newText": "'Microsoft.Network/expressRouteGateways@2018-12-01'" } }, { - "label": "'Microsoft.Network/interfaceEndpoints@2018-10-01'", + "label": "'Microsoft.Network/expressRouteGateways@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `interfaceEndpoints` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008fc", + "sortText": "00000871", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/interfaceEndpoints@2018-10-01'" + "newText": "'Microsoft.Network/expressRouteGateways@2019-02-01'" } }, { - "label": "'Microsoft.Network/interfaceEndpoints@2018-11-01'", + "label": "'Microsoft.Network/expressRouteGateways@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `interfaceEndpoints` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008fb", + "sortText": "00000870", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/interfaceEndpoints@2018-11-01'" + "newText": "'Microsoft.Network/expressRouteGateways@2019-04-01'" } }, { - "label": "'Microsoft.Network/interfaceEndpoints@2018-12-01'", + "label": "'Microsoft.Network/expressRouteGateways@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `interfaceEndpoints` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008fa", + "sortText": "0000086f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/interfaceEndpoints@2018-12-01'" + "newText": "'Microsoft.Network/expressRouteGateways@2019-06-01'" } }, { - "label": "'Microsoft.Network/interfaceEndpoints@2019-02-01'", + "label": "'Microsoft.Network/expressRouteGateways@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `interfaceEndpoints` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000008f9", + "sortText": "0000086e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/interfaceEndpoints@2019-02-01'" + "newText": "'Microsoft.Network/expressRouteGateways@2019-07-01'" } }, { - "label": "'Microsoft.Network/ipGroups@2019-09-01'", + "label": "'Microsoft.Network/expressRouteGateways@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ipGroups` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000908", + "sortText": "0000086d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ipGroups@2019-09-01'" + "newText": "'Microsoft.Network/expressRouteGateways@2019-08-01'" } }, { - "label": "'Microsoft.Network/ipGroups@2019-11-01'", + "label": "'Microsoft.Network/expressRouteGateways@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ipGroups` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000907", + "sortText": "0000086c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ipGroups@2019-11-01'" + "newText": "'Microsoft.Network/expressRouteGateways@2019-09-01'" } }, { - "label": "'Microsoft.Network/ipGroups@2019-12-01'", + "label": "'Microsoft.Network/expressRouteGateways@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ipGroups` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000906", + "sortText": "0000086b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ipGroups@2019-12-01'" + "newText": "'Microsoft.Network/expressRouteGateways@2019-11-01'" } }, { - "label": "'Microsoft.Network/ipGroups@2020-03-01'", + "label": "'Microsoft.Network/expressRouteGateways@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ipGroups` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000905", + "sortText": "0000086a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ipGroups@2020-03-01'" + "newText": "'Microsoft.Network/expressRouteGateways@2019-12-01'" } }, { - "label": "'Microsoft.Network/ipGroups@2020-04-01'", + "label": "'Microsoft.Network/expressRouteGateways@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ipGroups` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000904", + "sortText": "00000869", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ipGroups@2020-04-01'" + "newText": "'Microsoft.Network/expressRouteGateways@2020-03-01'" } }, { - "label": "'Microsoft.Network/ipGroups@2020-05-01'", + "label": "'Microsoft.Network/expressRouteGateways@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ipGroups` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000903", + "sortText": "00000868", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ipGroups@2020-05-01'" + "newText": "'Microsoft.Network/expressRouteGateways@2020-04-01'" } }, { - "label": "'Microsoft.Network/ipGroups@2020-06-01'", + "label": "'Microsoft.Network/expressRouteGateways@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `ipGroups` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000902", + "sortText": "00000867", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/ipGroups@2020-06-01'" + "newText": "'Microsoft.Network/expressRouteGateways@2020-05-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/backendAddressPools@2020-04-01'", + "label": "'Microsoft.Network/expressRouteGateways@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/backendAddressPools` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `expressRouteGateways` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000092c", + "sortText": "00000866", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/backendAddressPools@2020-04-01'" + "newText": "'Microsoft.Network/expressRouteGateways@2020-06-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/backendAddressPools@2020-05-01'", + "label": "'Microsoft.Network/firewallPolicies/ruleCollectionGroups@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/backendAddressPools` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies/ruleCollectionGroups` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000092b", + "sortText": "000008a1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/backendAddressPools@2020-05-01'" + "newText": "'Microsoft.Network/firewallPolicies/ruleCollectionGroups@2020-05-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/backendAddressPools@2020-06-01'", + "label": "'Microsoft.Network/firewallPolicies/ruleCollectionGroups@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/backendAddressPools` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies/ruleCollectionGroups` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000092a", + "sortText": "000008a0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/backendAddressPools@2020-06-01'" + "newText": "'Microsoft.Network/firewallPolicies/ruleCollectionGroups@2020-06-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2017-06-01'", + "label": "'Microsoft.Network/firewallPolicies/ruleGroups@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2017-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies/ruleGroups` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000946", + "sortText": "000008a9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2017-06-01'" + "newText": "'Microsoft.Network/firewallPolicies/ruleGroups@2019-06-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2017-08-01'", + "label": "'Microsoft.Network/firewallPolicies/ruleGroups@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2017-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies/ruleGroups` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000945", + "sortText": "000008a8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2017-08-01'" + "newText": "'Microsoft.Network/firewallPolicies/ruleGroups@2019-07-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2017-09-01'", + "label": "'Microsoft.Network/firewallPolicies/ruleGroups@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies/ruleGroups` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000944", + "sortText": "000008a7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2017-09-01'" + "newText": "'Microsoft.Network/firewallPolicies/ruleGroups@2019-08-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2017-10-01'", + "label": "'Microsoft.Network/firewallPolicies/ruleGroups@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies/ruleGroups` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000943", + "sortText": "000008a6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2017-10-01'" + "newText": "'Microsoft.Network/firewallPolicies/ruleGroups@2019-09-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2017-11-01'", + "label": "'Microsoft.Network/firewallPolicies/ruleGroups@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2017-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies/ruleGroups` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000942", + "sortText": "000008a5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2017-11-01'" + "newText": "'Microsoft.Network/firewallPolicies/ruleGroups@2019-11-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-01-01'", + "label": "'Microsoft.Network/firewallPolicies/ruleGroups@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2018-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies/ruleGroups` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000941", + "sortText": "000008a4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-01-01'" + "newText": "'Microsoft.Network/firewallPolicies/ruleGroups@2019-12-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-02-01'", + "label": "'Microsoft.Network/firewallPolicies/ruleGroups@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies/ruleGroups` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000940", + "sortText": "000008a3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-02-01'" + "newText": "'Microsoft.Network/firewallPolicies/ruleGroups@2020-03-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-04-01'", + "label": "'Microsoft.Network/firewallPolicies/ruleGroups@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies/ruleGroups` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000093f", + "sortText": "000008a2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-04-01'" + "newText": "'Microsoft.Network/firewallPolicies/ruleGroups@2020-04-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-06-01'", + "label": "'Microsoft.Network/firewallPolicies@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000093e", + "sortText": "0000089f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-06-01'" + "newText": "'Microsoft.Network/firewallPolicies@2019-06-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-07-01'", + "label": "'Microsoft.Network/firewallPolicies@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000093d", + "sortText": "0000089e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-07-01'" + "newText": "'Microsoft.Network/firewallPolicies@2019-07-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-08-01'", + "label": "'Microsoft.Network/firewallPolicies@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000093c", + "sortText": "0000089d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-08-01'" + "newText": "'Microsoft.Network/firewallPolicies@2019-08-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-10-01'", + "label": "'Microsoft.Network/firewallPolicies@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000093b", + "sortText": "0000089c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-10-01'" + "newText": "'Microsoft.Network/firewallPolicies@2019-09-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-11-01'", + "label": "'Microsoft.Network/firewallPolicies@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000093a", + "sortText": "0000089b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-11-01'" + "newText": "'Microsoft.Network/firewallPolicies@2019-11-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-12-01'", + "label": "'Microsoft.Network/firewallPolicies@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000939", + "sortText": "0000089a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-12-01'" + "newText": "'Microsoft.Network/firewallPolicies@2019-12-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-02-01'", + "label": "'Microsoft.Network/firewallPolicies@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000938", + "sortText": "00000899", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-02-01'" + "newText": "'Microsoft.Network/firewallPolicies@2020-03-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-04-01'", + "label": "'Microsoft.Network/firewallPolicies@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000937", + "sortText": "00000898", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-04-01'" + "newText": "'Microsoft.Network/firewallPolicies@2020-04-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-06-01'", + "label": "'Microsoft.Network/firewallPolicies@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000936", + "sortText": "00000897", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-06-01'" + "newText": "'Microsoft.Network/firewallPolicies@2020-05-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-07-01'", + "label": "'Microsoft.Network/firewallPolicies@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `firewallPolicies` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000935", + "sortText": "00000896", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-07-01'" + "newText": "'Microsoft.Network/firewallPolicies@2020-06-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-08-01'", + "label": "'Microsoft.Network/frontDoors/rulesEngines@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `frontDoors/rulesEngines` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000934", + "sortText": "000008b2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-08-01'" + "newText": "'Microsoft.Network/frontDoors/rulesEngines@2020-01-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-09-01'", + "label": "'Microsoft.Network/frontDoors/rulesEngines@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `frontDoors/rulesEngines` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000933", + "sortText": "000008b1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-09-01'" + "newText": "'Microsoft.Network/frontDoors/rulesEngines@2020-04-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-11-01'", + "label": "'Microsoft.Network/frontDoors/rulesEngines@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `frontDoors/rulesEngines` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000932", + "sortText": "000008b0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-11-01'" + "newText": "'Microsoft.Network/frontDoors/rulesEngines@2020-05-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-12-01'", + "label": "'Microsoft.Network/frontDoors@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `frontDoors` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000931", + "sortText": "000008af", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-12-01'" + "newText": "'Microsoft.Network/frontDoors@2018-08-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2020-03-01'", + "label": "'Microsoft.Network/frontDoors@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `frontDoors` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000930", + "sortText": "000008ae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2020-03-01'" + "newText": "'Microsoft.Network/frontDoors@2019-04-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2020-04-01'", + "label": "'Microsoft.Network/frontDoors@2019-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `frontDoors` \nAPI Version: `2019-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000092f", + "sortText": "000008ad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2020-04-01'" + "newText": "'Microsoft.Network/frontDoors@2019-05-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2020-05-01'", + "label": "'Microsoft.Network/frontDoors@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `frontDoors` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000092e", + "sortText": "000008ac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2020-05-01'" + "newText": "'Microsoft.Network/frontDoors@2020-01-01'" } }, { - "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2020-06-01'", + "label": "'Microsoft.Network/frontDoors@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `frontDoors` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000092d", + "sortText": "000008ab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2020-06-01'" + "newText": "'Microsoft.Network/frontDoors@2020-04-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2015-05-01-preview'", + "label": "'Microsoft.Network/frontDoors@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2015-05-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `frontDoors` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000929", + "sortText": "000008aa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2015-05-01-preview'" + "newText": "'Microsoft.Network/frontDoors@2020-05-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2015-06-15'", + "label": "'Microsoft.Network/interfaceEndpoints@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2015-06-15`" + "value": "Namespace: `Microsoft.Network` \nType: `interfaceEndpoints` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000928", + "sortText": "000008bb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2015-06-15'" + "newText": "'Microsoft.Network/interfaceEndpoints@2018-08-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2016-03-30'", + "label": "'Microsoft.Network/interfaceEndpoints@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2016-03-30`" + "value": "Namespace: `Microsoft.Network` \nType: `interfaceEndpoints` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000927", + "sortText": "000008ba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2016-03-30'" + "newText": "'Microsoft.Network/interfaceEndpoints@2018-10-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2016-06-01'", + "label": "'Microsoft.Network/interfaceEndpoints@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `interfaceEndpoints` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000926", + "sortText": "000008b9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2016-06-01'" + "newText": "'Microsoft.Network/interfaceEndpoints@2018-11-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2016-09-01'", + "label": "'Microsoft.Network/interfaceEndpoints@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2016-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `interfaceEndpoints` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000925", + "sortText": "000008b8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2016-09-01'" + "newText": "'Microsoft.Network/interfaceEndpoints@2018-12-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2016-12-01'", + "label": "'Microsoft.Network/interfaceEndpoints@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2016-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `interfaceEndpoints` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000924", + "sortText": "000008b7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2016-12-01'" + "newText": "'Microsoft.Network/interfaceEndpoints@2019-02-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2017-03-01'", + "label": "'Microsoft.Network/ipGroups@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2017-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ipGroups` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000923", + "sortText": "000008c6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2017-03-01'" + "newText": "'Microsoft.Network/ipGroups@2019-09-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2017-06-01'", + "label": "'Microsoft.Network/ipGroups@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2017-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ipGroups` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000922", + "sortText": "000008c5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2017-06-01'" + "newText": "'Microsoft.Network/ipGroups@2019-11-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2017-08-01'", + "label": "'Microsoft.Network/ipGroups@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2017-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ipGroups` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000921", + "sortText": "000008c4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2017-08-01'" + "newText": "'Microsoft.Network/ipGroups@2019-12-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2017-09-01'", + "label": "'Microsoft.Network/ipGroups@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ipGroups` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000920", + "sortText": "000008c3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2017-09-01'" + "newText": "'Microsoft.Network/ipGroups@2020-03-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2017-10-01'", + "label": "'Microsoft.Network/ipGroups@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ipGroups` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000091f", + "sortText": "000008c2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2017-10-01'" + "newText": "'Microsoft.Network/ipGroups@2020-04-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2017-11-01'", + "label": "'Microsoft.Network/ipGroups@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2017-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ipGroups` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000091e", + "sortText": "000008c1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2017-11-01'" + "newText": "'Microsoft.Network/ipGroups@2020-05-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2018-01-01'", + "label": "'Microsoft.Network/ipGroups@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2018-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `ipGroups` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000091d", + "sortText": "000008c0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2018-01-01'" + "newText": "'Microsoft.Network/ipGroups@2020-06-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2018-02-01'", + "label": "'Microsoft.Network/loadBalancers/backendAddressPools@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/backendAddressPools` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000091c", + "sortText": "000008ea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2018-02-01'" + "newText": "'Microsoft.Network/loadBalancers/backendAddressPools@2020-04-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2018-04-01'", + "label": "'Microsoft.Network/loadBalancers/backendAddressPools@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/backendAddressPools` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000091b", + "sortText": "000008e9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2018-04-01'" + "newText": "'Microsoft.Network/loadBalancers/backendAddressPools@2020-05-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2018-06-01'", + "label": "'Microsoft.Network/loadBalancers/backendAddressPools@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/backendAddressPools` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000091a", + "sortText": "000008e8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2018-06-01'" + "newText": "'Microsoft.Network/loadBalancers/backendAddressPools@2020-06-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2018-07-01'", + "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2017-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2017-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000919", + "sortText": "00000904", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2018-07-01'" + "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2017-06-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2018-08-01'", + "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2017-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2017-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000918", + "sortText": "00000903", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2018-08-01'" + "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2017-08-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2018-10-01'", + "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000917", + "sortText": "00000902", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2018-10-01'" + "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2017-09-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2018-11-01'", + "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000916", + "sortText": "00000901", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2018-11-01'" + "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2017-10-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2018-12-01'", + "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2017-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2017-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000915", + "sortText": "00000900", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2018-12-01'" + "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2017-11-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2019-02-01'", + "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2018-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000914", + "sortText": "000008ff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2019-02-01'" + "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-01-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2019-04-01'", + "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000913", + "sortText": "000008fe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2019-04-01'" + "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-02-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2019-06-01'", + "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000912", + "sortText": "000008fd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2019-06-01'" + "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-04-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2019-07-01'", + "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000911", + "sortText": "000008fc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2019-07-01'" + "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-06-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2019-08-01'", + "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000910", + "sortText": "000008fb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2019-08-01'" + "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-07-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2019-09-01'", + "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000090f", + "sortText": "000008fa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2019-09-01'" + "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-08-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2019-11-01'", + "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000090e", + "sortText": "000008f9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2019-11-01'" + "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-10-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2019-12-01'", + "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000090d", + "sortText": "000008f8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2019-12-01'" + "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-11-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2020-03-01'", + "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000090c", + "sortText": "000008f7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2020-03-01'" + "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2018-12-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2020-04-01'", + "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000090b", + "sortText": "000008f6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2020-04-01'" + "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-02-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2020-05-01'", + "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000090a", + "sortText": "000008f5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2020-05-01'" + "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-04-01'" } }, { - "label": "'Microsoft.Network/loadBalancers@2020-06-01'", + "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000909", + "sortText": "000008f4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/loadBalancers@2020-06-01'" + "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-06-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2015-05-01-preview'", + "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2015-05-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000967", + "sortText": "000008f3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2015-05-01-preview'" + "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-07-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2015-06-15'", + "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2015-06-15`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000966", + "sortText": "000008f2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2015-06-15'" + "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-08-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2016-03-30'", + "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2016-03-30`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000965", + "sortText": "000008f1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2016-03-30'" + "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-09-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2016-06-01'", + "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000964", + "sortText": "000008f0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2016-06-01'" + "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-11-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2016-09-01'", + "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2016-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000963", + "sortText": "000008ef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2016-09-01'" + "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2019-12-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2016-12-01'", + "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2016-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000962", + "sortText": "000008ee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2016-12-01'" + "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2020-03-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2017-03-01'", + "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2017-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000961", + "sortText": "000008ed", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2017-03-01'" + "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2020-04-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2017-06-01'", + "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2017-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000960", + "sortText": "000008ec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2017-06-01'" + "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2020-05-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2017-08-01'", + "label": "'Microsoft.Network/loadBalancers/inboundNatRules@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2017-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers/inboundNatRules` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000095f", + "sortText": "000008eb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2017-08-01'" + "newText": "'Microsoft.Network/loadBalancers/inboundNatRules@2020-06-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2017-09-01'", + "label": "'Microsoft.Network/loadBalancers@2015-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2015-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000095e", + "sortText": "000008e7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2017-09-01'" + "newText": "'Microsoft.Network/loadBalancers@2015-05-01-preview'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2017-10-01'", + "label": "'Microsoft.Network/loadBalancers@2015-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2015-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "0000095d", + "sortText": "000008e6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2017-10-01'" + "newText": "'Microsoft.Network/loadBalancers@2015-06-15'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2017-11-01'", + "label": "'Microsoft.Network/loadBalancers@2016-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2017-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2016-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "0000095c", + "sortText": "000008e5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2017-11-01'" + "newText": "'Microsoft.Network/loadBalancers@2016-03-30'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2018-01-01'", + "label": "'Microsoft.Network/loadBalancers@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2018-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000095b", + "sortText": "000008e4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2018-01-01'" + "newText": "'Microsoft.Network/loadBalancers@2016-06-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2018-02-01'", + "label": "'Microsoft.Network/loadBalancers@2016-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2016-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000095a", + "sortText": "000008e3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2018-02-01'" + "newText": "'Microsoft.Network/loadBalancers@2016-09-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2018-04-01'", + "label": "'Microsoft.Network/loadBalancers@2016-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2016-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000959", + "sortText": "000008e2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2018-04-01'" + "newText": "'Microsoft.Network/loadBalancers@2016-12-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2018-06-01'", + "label": "'Microsoft.Network/loadBalancers@2017-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2017-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000958", + "sortText": "000008e1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2018-06-01'" + "newText": "'Microsoft.Network/loadBalancers@2017-03-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2018-07-01'", + "label": "'Microsoft.Network/loadBalancers@2017-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2017-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000957", + "sortText": "000008e0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2018-07-01'" + "newText": "'Microsoft.Network/loadBalancers@2017-06-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2018-08-01'", + "label": "'Microsoft.Network/loadBalancers@2017-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2017-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000956", + "sortText": "000008df", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2018-08-01'" + "newText": "'Microsoft.Network/loadBalancers@2017-08-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2018-10-01'", + "label": "'Microsoft.Network/loadBalancers@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000955", + "sortText": "000008de", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2018-10-01'" + "newText": "'Microsoft.Network/loadBalancers@2017-09-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2018-11-01'", + "label": "'Microsoft.Network/loadBalancers@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000954", + "sortText": "000008dd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2018-11-01'" + "newText": "'Microsoft.Network/loadBalancers@2017-10-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2018-12-01'", + "label": "'Microsoft.Network/loadBalancers@2017-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2017-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000953", + "sortText": "000008dc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2018-12-01'" + "newText": "'Microsoft.Network/loadBalancers@2017-11-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2019-02-01'", + "label": "'Microsoft.Network/loadBalancers@2018-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2018-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000952", + "sortText": "000008db", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2019-02-01'" + "newText": "'Microsoft.Network/loadBalancers@2018-01-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2019-04-01'", + "label": "'Microsoft.Network/loadBalancers@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000951", + "sortText": "000008da", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2019-04-01'" + "newText": "'Microsoft.Network/loadBalancers@2018-02-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2019-06-01'", + "label": "'Microsoft.Network/loadBalancers@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000950", + "sortText": "000008d9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2019-06-01'" + "newText": "'Microsoft.Network/loadBalancers@2018-04-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2019-07-01'", + "label": "'Microsoft.Network/loadBalancers@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000094f", + "sortText": "000008d8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2019-07-01'" + "newText": "'Microsoft.Network/loadBalancers@2018-06-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2019-08-01'", + "label": "'Microsoft.Network/loadBalancers@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000094e", + "sortText": "000008d7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2019-08-01'" + "newText": "'Microsoft.Network/loadBalancers@2018-07-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2019-09-01'", + "label": "'Microsoft.Network/loadBalancers@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000094d", + "sortText": "000008d6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2019-09-01'" + "newText": "'Microsoft.Network/loadBalancers@2018-08-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2019-11-01'", + "label": "'Microsoft.Network/loadBalancers@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000094c", + "sortText": "000008d5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2019-11-01'" + "newText": "'Microsoft.Network/loadBalancers@2018-10-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2019-12-01'", + "label": "'Microsoft.Network/loadBalancers@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000094b", + "sortText": "000008d4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2019-12-01'" + "newText": "'Microsoft.Network/loadBalancers@2018-11-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2020-03-01'", + "label": "'Microsoft.Network/loadBalancers@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000094a", + "sortText": "000008d3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2020-03-01'" + "newText": "'Microsoft.Network/loadBalancers@2018-12-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2020-04-01'", + "label": "'Microsoft.Network/loadBalancers@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000949", + "sortText": "000008d2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2020-04-01'" + "newText": "'Microsoft.Network/loadBalancers@2019-02-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2020-05-01'", + "label": "'Microsoft.Network/loadBalancers@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000948", + "sortText": "000008d1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2020-05-01'" + "newText": "'Microsoft.Network/loadBalancers@2019-04-01'" } }, { - "label": "'Microsoft.Network/localNetworkGateways@2020-06-01'", + "label": "'Microsoft.Network/loadBalancers@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000947", + "sortText": "000008d0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/localNetworkGateways@2020-06-01'" + "newText": "'Microsoft.Network/loadBalancers@2019-06-01'" } }, { - "label": "'Microsoft.Network/natGateways@2019-02-01'", + "label": "'Microsoft.Network/loadBalancers@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `natGateways` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000973", + "sortText": "000008cf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/natGateways@2019-02-01'" + "newText": "'Microsoft.Network/loadBalancers@2019-07-01'" } }, { - "label": "'Microsoft.Network/natGateways@2019-04-01'", + "label": "'Microsoft.Network/loadBalancers@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `natGateways` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000972", + "sortText": "000008ce", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/natGateways@2019-04-01'" + "newText": "'Microsoft.Network/loadBalancers@2019-08-01'" } }, { - "label": "'Microsoft.Network/natGateways@2019-06-01'", + "label": "'Microsoft.Network/loadBalancers@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `natGateways` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000971", + "sortText": "000008cd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/natGateways@2019-06-01'" + "newText": "'Microsoft.Network/loadBalancers@2019-09-01'" } }, { - "label": "'Microsoft.Network/natGateways@2019-07-01'", + "label": "'Microsoft.Network/loadBalancers@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `natGateways` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000970", + "sortText": "000008cc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/natGateways@2019-07-01'" + "newText": "'Microsoft.Network/loadBalancers@2019-11-01'" } }, { - "label": "'Microsoft.Network/natGateways@2019-08-01'", + "label": "'Microsoft.Network/loadBalancers@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `natGateways` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000096f", + "sortText": "000008cb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/natGateways@2019-08-01'" + "newText": "'Microsoft.Network/loadBalancers@2019-12-01'" } }, { - "label": "'Microsoft.Network/natGateways@2019-09-01'", + "label": "'Microsoft.Network/loadBalancers@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `natGateways` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000096e", + "sortText": "000008ca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/natGateways@2019-09-01'" + "newText": "'Microsoft.Network/loadBalancers@2020-03-01'" } }, { - "label": "'Microsoft.Network/natGateways@2019-11-01'", + "label": "'Microsoft.Network/loadBalancers@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `natGateways` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000096d", + "sortText": "000008c9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/natGateways@2019-11-01'" + "newText": "'Microsoft.Network/loadBalancers@2020-04-01'" } }, { - "label": "'Microsoft.Network/natGateways@2019-12-01'", + "label": "'Microsoft.Network/loadBalancers@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `natGateways` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000096c", + "sortText": "000008c8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/natGateways@2019-12-01'" + "newText": "'Microsoft.Network/loadBalancers@2020-05-01'" } }, { - "label": "'Microsoft.Network/natGateways@2020-03-01'", + "label": "'Microsoft.Network/loadBalancers@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `natGateways` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `loadBalancers` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000096b", + "sortText": "000008c7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/natGateways@2020-03-01'" + "newText": "'Microsoft.Network/loadBalancers@2020-06-01'" } }, { - "label": "'Microsoft.Network/natGateways@2020-04-01'", + "label": "'Microsoft.Network/localNetworkGateways@2015-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `natGateways` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2015-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "0000096a", + "sortText": "00000925", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/natGateways@2020-04-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2015-05-01-preview'" } }, { - "label": "'Microsoft.Network/natGateways@2020-05-01'", + "label": "'Microsoft.Network/localNetworkGateways@2015-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `natGateways` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2015-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000969", + "sortText": "00000924", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/natGateways@2020-05-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2015-06-15'" } }, { - "label": "'Microsoft.Network/natGateways@2020-06-01'", + "label": "'Microsoft.Network/localNetworkGateways@2016-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `natGateways` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2016-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "00000968", + "sortText": "00000923", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/natGateways@2020-06-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2016-03-30'" } }, { - "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2018-08-01'", + "label": "'Microsoft.Network/localNetworkGateways@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009a6", + "sortText": "00000922", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2018-08-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2016-06-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2018-10-01'", + "label": "'Microsoft.Network/localNetworkGateways@2016-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2016-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009a5", + "sortText": "00000921", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2018-10-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2016-09-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2018-11-01'", + "label": "'Microsoft.Network/localNetworkGateways@2016-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2016-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009a4", + "sortText": "00000920", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2018-11-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2016-12-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2018-12-01'", + "label": "'Microsoft.Network/localNetworkGateways@2017-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2017-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009a3", + "sortText": "0000091f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2018-12-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2017-03-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-02-01'", + "label": "'Microsoft.Network/localNetworkGateways@2017-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2017-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009a2", + "sortText": "0000091e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-02-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2017-06-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-04-01'", + "label": "'Microsoft.Network/localNetworkGateways@2017-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2017-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009a1", + "sortText": "0000091d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-04-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2017-08-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-06-01'", + "label": "'Microsoft.Network/localNetworkGateways@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009a0", + "sortText": "0000091c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-06-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2017-09-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-07-01'", + "label": "'Microsoft.Network/localNetworkGateways@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000099f", + "sortText": "0000091b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-07-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2017-10-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-08-01'", + "label": "'Microsoft.Network/localNetworkGateways@2017-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2017-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000099e", + "sortText": "0000091a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-08-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2017-11-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-09-01'", + "label": "'Microsoft.Network/localNetworkGateways@2018-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2018-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000099d", + "sortText": "00000919", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-09-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2018-01-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-11-01'", + "label": "'Microsoft.Network/localNetworkGateways@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000099c", + "sortText": "00000918", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-11-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2018-02-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-12-01'", + "label": "'Microsoft.Network/localNetworkGateways@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000099b", + "sortText": "00000917", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-12-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2018-04-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2020-03-01'", + "label": "'Microsoft.Network/localNetworkGateways@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000099a", + "sortText": "00000916", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2020-03-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2018-06-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2020-04-01'", + "label": "'Microsoft.Network/localNetworkGateways@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000999", + "sortText": "00000915", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2020-04-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2018-07-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2020-05-01'", + "label": "'Microsoft.Network/localNetworkGateways@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000998", + "sortText": "00000914", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2020-05-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2018-08-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2020-06-01'", + "label": "'Microsoft.Network/localNetworkGateways@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000997", + "sortText": "00000913", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2020-06-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2018-10-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2015-05-01-preview'", + "label": "'Microsoft.Network/localNetworkGateways@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2015-05-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000996", + "sortText": "00000912", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2015-05-01-preview'" + "newText": "'Microsoft.Network/localNetworkGateways@2018-11-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2015-06-15'", + "label": "'Microsoft.Network/localNetworkGateways@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2015-06-15`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000995", + "sortText": "00000911", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2015-06-15'" + "newText": "'Microsoft.Network/localNetworkGateways@2018-12-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2016-03-30'", + "label": "'Microsoft.Network/localNetworkGateways@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2016-03-30`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000994", + "sortText": "00000910", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2016-03-30'" + "newText": "'Microsoft.Network/localNetworkGateways@2019-02-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2016-06-01'", + "label": "'Microsoft.Network/localNetworkGateways@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000993", + "sortText": "0000090f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2016-06-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2019-04-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2016-09-01'", + "label": "'Microsoft.Network/localNetworkGateways@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2016-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000992", + "sortText": "0000090e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2016-09-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2019-06-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2016-12-01'", + "label": "'Microsoft.Network/localNetworkGateways@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2016-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000991", + "sortText": "0000090d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2016-12-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2019-07-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2017-03-01'", + "label": "'Microsoft.Network/localNetworkGateways@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2017-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000990", + "sortText": "0000090c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2017-03-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2019-08-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2017-06-01'", + "label": "'Microsoft.Network/localNetworkGateways@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2017-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000098f", + "sortText": "0000090b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2017-06-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2019-09-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2017-08-01'", + "label": "'Microsoft.Network/localNetworkGateways@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2017-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000098e", + "sortText": "0000090a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2017-08-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2019-11-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2017-09-01'", + "label": "'Microsoft.Network/localNetworkGateways@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000098d", + "sortText": "00000909", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2017-09-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2019-12-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2017-10-01'", + "label": "'Microsoft.Network/localNetworkGateways@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000098c", + "sortText": "00000908", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2017-10-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2020-03-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2017-11-01'", + "label": "'Microsoft.Network/localNetworkGateways@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2017-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000098b", + "sortText": "00000907", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2017-11-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2020-04-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2018-01-01'", + "label": "'Microsoft.Network/localNetworkGateways@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2018-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000098a", + "sortText": "00000906", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2018-01-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2020-05-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2018-02-01'", + "label": "'Microsoft.Network/localNetworkGateways@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `localNetworkGateways` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000989", + "sortText": "00000905", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2018-02-01'" + "newText": "'Microsoft.Network/localNetworkGateways@2020-06-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2018-04-01'", + "label": "'Microsoft.Network/natGateways@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `natGateways` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000988", + "sortText": "00000931", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2018-04-01'" + "newText": "'Microsoft.Network/natGateways@2019-02-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2018-06-01'", + "label": "'Microsoft.Network/natGateways@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `natGateways` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000987", + "sortText": "00000930", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2018-06-01'" + "newText": "'Microsoft.Network/natGateways@2019-04-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2018-07-01'", + "label": "'Microsoft.Network/natGateways@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `natGateways` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000986", + "sortText": "0000092f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2018-07-01'" + "newText": "'Microsoft.Network/natGateways@2019-06-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2018-08-01'", + "label": "'Microsoft.Network/natGateways@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `natGateways` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000985", + "sortText": "0000092e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2018-08-01'" + "newText": "'Microsoft.Network/natGateways@2019-07-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2018-10-01'", + "label": "'Microsoft.Network/natGateways@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `natGateways` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000984", + "sortText": "0000092d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2018-10-01'" + "newText": "'Microsoft.Network/natGateways@2019-08-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2018-11-01'", + "label": "'Microsoft.Network/natGateways@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `natGateways` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000983", + "sortText": "0000092c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2018-11-01'" + "newText": "'Microsoft.Network/natGateways@2019-09-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2018-12-01'", + "label": "'Microsoft.Network/natGateways@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `natGateways` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000982", + "sortText": "0000092b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2018-12-01'" + "newText": "'Microsoft.Network/natGateways@2019-11-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2019-02-01'", + "label": "'Microsoft.Network/natGateways@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `natGateways` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000981", + "sortText": "0000092a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2019-02-01'" + "newText": "'Microsoft.Network/natGateways@2019-12-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2019-04-01'", + "label": "'Microsoft.Network/natGateways@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `natGateways` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000980", + "sortText": "00000929", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2019-04-01'" + "newText": "'Microsoft.Network/natGateways@2020-03-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2019-06-01'", + "label": "'Microsoft.Network/natGateways@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `natGateways` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000097f", + "sortText": "00000928", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2019-06-01'" + "newText": "'Microsoft.Network/natGateways@2020-04-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2019-07-01'", + "label": "'Microsoft.Network/natGateways@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `natGateways` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000097e", + "sortText": "00000927", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2019-07-01'" + "newText": "'Microsoft.Network/natGateways@2020-05-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2019-08-01'", + "label": "'Microsoft.Network/natGateways@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `natGateways` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000097d", + "sortText": "00000926", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2019-08-01'" + "newText": "'Microsoft.Network/natGateways@2020-06-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2019-09-01'", + "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000097c", + "sortText": "00000964", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2019-09-01'" + "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2018-08-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2019-11-01'", + "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000097b", + "sortText": "00000963", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2019-11-01'" + "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2018-10-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2019-12-01'", + "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "0000097a", + "sortText": "00000962", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2019-12-01'" + "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2018-11-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2020-03-01'", + "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000979", + "sortText": "00000961", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2020-03-01'" + "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2018-12-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2020-04-01'", + "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000978", + "sortText": "00000960", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2020-04-01'" + "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-02-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2020-05-01'", + "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000977", + "sortText": "0000095f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2020-05-01'" + "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-04-01'" } }, { - "label": "'Microsoft.Network/networkInterfaces@2020-06-01'", + "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000976", + "sortText": "0000095e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkInterfaces@2020-06-01'" + "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-06-01'" } }, { - "label": "'Microsoft.Network/networkProfiles@2018-08-01'", + "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009b6", + "sortText": "0000095d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkProfiles@2018-08-01'" + "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-07-01'" } }, { - "label": "'Microsoft.Network/networkProfiles@2018-10-01'", + "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009b5", + "sortText": "0000095c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkProfiles@2018-10-01'" + "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-08-01'" } }, { - "label": "'Microsoft.Network/networkProfiles@2018-11-01'", + "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009b4", + "sortText": "0000095b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkProfiles@2018-11-01'" + "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-09-01'" } }, { - "label": "'Microsoft.Network/networkProfiles@2018-12-01'", + "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009b3", + "sortText": "0000095a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkProfiles@2018-12-01'" + "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-11-01'" } }, { - "label": "'Microsoft.Network/networkProfiles@2019-02-01'", + "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009b2", + "sortText": "00000959", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkProfiles@2019-02-01'" + "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2019-12-01'" } }, { - "label": "'Microsoft.Network/networkProfiles@2019-04-01'", + "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009b1", + "sortText": "00000958", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkProfiles@2019-04-01'" + "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2020-03-01'" } }, { - "label": "'Microsoft.Network/networkProfiles@2019-06-01'", + "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009b0", + "sortText": "00000957", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkProfiles@2019-06-01'" + "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2020-04-01'" } }, { - "label": "'Microsoft.Network/networkProfiles@2019-07-01'", + "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009af", + "sortText": "00000956", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkProfiles@2019-07-01'" + "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2020-05-01'" } }, { - "label": "'Microsoft.Network/networkProfiles@2019-08-01'", + "label": "'Microsoft.Network/networkInterfaces/tapConfigurations@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces/tapConfigurations` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009ae", + "sortText": "00000955", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkProfiles@2019-08-01'" + "newText": "'Microsoft.Network/networkInterfaces/tapConfigurations@2020-06-01'" } }, { - "label": "'Microsoft.Network/networkProfiles@2019-09-01'", + "label": "'Microsoft.Network/networkInterfaces@2015-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2015-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000009ad", + "sortText": "00000954", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkProfiles@2019-09-01'" + "newText": "'Microsoft.Network/networkInterfaces@2015-05-01-preview'" } }, { - "label": "'Microsoft.Network/networkProfiles@2019-11-01'", + "label": "'Microsoft.Network/networkInterfaces@2015-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2015-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "000009ac", + "sortText": "00000953", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkProfiles@2019-11-01'" + "newText": "'Microsoft.Network/networkInterfaces@2015-06-15'" } }, { - "label": "'Microsoft.Network/networkProfiles@2019-12-01'", + "label": "'Microsoft.Network/networkInterfaces@2016-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2016-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "000009ab", + "sortText": "00000952", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkProfiles@2019-12-01'" + "newText": "'Microsoft.Network/networkInterfaces@2016-03-30'" } }, { - "label": "'Microsoft.Network/networkProfiles@2020-03-01'", + "label": "'Microsoft.Network/networkInterfaces@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009aa", + "sortText": "00000951", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkProfiles@2020-03-01'" + "newText": "'Microsoft.Network/networkInterfaces@2016-06-01'" } }, { - "label": "'Microsoft.Network/networkProfiles@2020-04-01'", + "label": "'Microsoft.Network/networkInterfaces@2016-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2016-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009a9", + "sortText": "00000950", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkProfiles@2020-04-01'" + "newText": "'Microsoft.Network/networkInterfaces@2016-09-01'" } }, { - "label": "'Microsoft.Network/networkProfiles@2020-05-01'", + "label": "'Microsoft.Network/networkInterfaces@2016-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2016-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009a8", + "sortText": "0000094f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkProfiles@2020-05-01'" + "newText": "'Microsoft.Network/networkInterfaces@2016-12-01'" } }, { - "label": "'Microsoft.Network/networkProfiles@2020-06-01'", + "label": "'Microsoft.Network/networkInterfaces@2017-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2017-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009a7", + "sortText": "0000094e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkProfiles@2020-06-01'" + "newText": "'Microsoft.Network/networkInterfaces@2017-03-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2015-05-01-preview'", + "label": "'Microsoft.Network/networkInterfaces@2017-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2015-05-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2017-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009f8", + "sortText": "0000094d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2015-05-01-preview'" + "newText": "'Microsoft.Network/networkInterfaces@2017-06-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2015-06-15'", + "label": "'Microsoft.Network/networkInterfaces@2017-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2015-06-15`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2017-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009f7", + "sortText": "0000094c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2015-06-15'" + "newText": "'Microsoft.Network/networkInterfaces@2017-08-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2016-03-30'", + "label": "'Microsoft.Network/networkInterfaces@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2016-03-30`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009f6", + "sortText": "0000094b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2016-03-30'" + "newText": "'Microsoft.Network/networkInterfaces@2017-09-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2016-06-01'", + "label": "'Microsoft.Network/networkInterfaces@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009f5", + "sortText": "0000094a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2016-06-01'" + "newText": "'Microsoft.Network/networkInterfaces@2017-10-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2016-09-01'", + "label": "'Microsoft.Network/networkInterfaces@2017-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2016-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2017-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009f4", + "sortText": "00000949", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2016-09-01'" + "newText": "'Microsoft.Network/networkInterfaces@2017-11-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2016-12-01'", + "label": "'Microsoft.Network/networkInterfaces@2018-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2016-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2018-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009f3", + "sortText": "00000948", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2016-12-01'" + "newText": "'Microsoft.Network/networkInterfaces@2018-01-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2017-03-01'", + "label": "'Microsoft.Network/networkInterfaces@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2017-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009f2", + "sortText": "00000947", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2017-03-01'" + "newText": "'Microsoft.Network/networkInterfaces@2018-02-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2017-06-01'", + "label": "'Microsoft.Network/networkInterfaces@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2017-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009f1", + "sortText": "00000946", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2017-06-01'" + "newText": "'Microsoft.Network/networkInterfaces@2018-04-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2017-08-01'", + "label": "'Microsoft.Network/networkInterfaces@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2017-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009f0", + "sortText": "00000945", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2017-08-01'" + "newText": "'Microsoft.Network/networkInterfaces@2018-06-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2017-09-01'", + "label": "'Microsoft.Network/networkInterfaces@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009ef", + "sortText": "00000944", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2017-09-01'" + "newText": "'Microsoft.Network/networkInterfaces@2018-07-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2017-10-01'", + "label": "'Microsoft.Network/networkInterfaces@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009ee", + "sortText": "00000943", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2017-10-01'" + "newText": "'Microsoft.Network/networkInterfaces@2018-08-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2017-11-01'", + "label": "'Microsoft.Network/networkInterfaces@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2017-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009ed", + "sortText": "00000942", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2017-11-01'" + "newText": "'Microsoft.Network/networkInterfaces@2018-10-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-01-01'", + "label": "'Microsoft.Network/networkInterfaces@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2018-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009ec", + "sortText": "00000941", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-01-01'" + "newText": "'Microsoft.Network/networkInterfaces@2018-11-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-02-01'", + "label": "'Microsoft.Network/networkInterfaces@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009eb", + "sortText": "00000940", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-02-01'" + "newText": "'Microsoft.Network/networkInterfaces@2018-12-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-04-01'", + "label": "'Microsoft.Network/networkInterfaces@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009ea", + "sortText": "0000093f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-04-01'" + "newText": "'Microsoft.Network/networkInterfaces@2019-02-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-06-01'", + "label": "'Microsoft.Network/networkInterfaces@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009e9", + "sortText": "0000093e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-06-01'" + "newText": "'Microsoft.Network/networkInterfaces@2019-04-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-07-01'", + "label": "'Microsoft.Network/networkInterfaces@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009e8", + "sortText": "0000093d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-07-01'" + "newText": "'Microsoft.Network/networkInterfaces@2019-06-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-08-01'", + "label": "'Microsoft.Network/networkInterfaces@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009e7", + "sortText": "0000093c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-08-01'" + "newText": "'Microsoft.Network/networkInterfaces@2019-07-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-10-01'", + "label": "'Microsoft.Network/networkInterfaces@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009e6", + "sortText": "0000093b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-10-01'" + "newText": "'Microsoft.Network/networkInterfaces@2019-08-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-11-01'", + "label": "'Microsoft.Network/networkInterfaces@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009e5", + "sortText": "0000093a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-11-01'" + "newText": "'Microsoft.Network/networkInterfaces@2019-09-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-12-01'", + "label": "'Microsoft.Network/networkInterfaces@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009e4", + "sortText": "00000939", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-12-01'" + "newText": "'Microsoft.Network/networkInterfaces@2019-11-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-02-01'", + "label": "'Microsoft.Network/networkInterfaces@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009e3", + "sortText": "00000938", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-02-01'" + "newText": "'Microsoft.Network/networkInterfaces@2019-12-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-04-01'", + "label": "'Microsoft.Network/networkInterfaces@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009e2", + "sortText": "00000937", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-04-01'" + "newText": "'Microsoft.Network/networkInterfaces@2020-03-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-06-01'", + "label": "'Microsoft.Network/networkInterfaces@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009e1", + "sortText": "00000936", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-06-01'" + "newText": "'Microsoft.Network/networkInterfaces@2020-04-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-07-01'", + "label": "'Microsoft.Network/networkInterfaces@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009e0", + "sortText": "00000935", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-07-01'" + "newText": "'Microsoft.Network/networkInterfaces@2020-05-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-08-01'", + "label": "'Microsoft.Network/networkInterfaces@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkInterfaces` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009df", + "sortText": "00000934", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-08-01'" + "newText": "'Microsoft.Network/networkInterfaces@2020-06-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-09-01'", + "label": "'Microsoft.Network/networkProfiles@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009de", + "sortText": "00000974", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-09-01'" + "newText": "'Microsoft.Network/networkProfiles@2018-08-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-11-01'", + "label": "'Microsoft.Network/networkProfiles@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009dd", + "sortText": "00000973", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-11-01'" + "newText": "'Microsoft.Network/networkProfiles@2018-10-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-12-01'", + "label": "'Microsoft.Network/networkProfiles@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009dc", + "sortText": "00000972", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-12-01'" + "newText": "'Microsoft.Network/networkProfiles@2018-11-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2020-03-01'", + "label": "'Microsoft.Network/networkProfiles@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009db", + "sortText": "00000971", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2020-03-01'" + "newText": "'Microsoft.Network/networkProfiles@2018-12-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2020-04-01'", + "label": "'Microsoft.Network/networkProfiles@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009da", + "sortText": "00000970", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2020-04-01'" + "newText": "'Microsoft.Network/networkProfiles@2019-02-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2020-05-01'", + "label": "'Microsoft.Network/networkProfiles@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009d9", + "sortText": "0000096f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2020-05-01'" + "newText": "'Microsoft.Network/networkProfiles@2019-04-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2020-06-01'", + "label": "'Microsoft.Network/networkProfiles@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009d8", + "sortText": "0000096e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2020-06-01'" + "newText": "'Microsoft.Network/networkProfiles@2019-06-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2015-05-01-preview'", + "label": "'Microsoft.Network/networkProfiles@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2015-05-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009d7", + "sortText": "0000096d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2015-05-01-preview'" + "newText": "'Microsoft.Network/networkProfiles@2019-07-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2015-06-15'", + "label": "'Microsoft.Network/networkProfiles@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2015-06-15`" + "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009d6", + "sortText": "0000096c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2015-06-15'" + "newText": "'Microsoft.Network/networkProfiles@2019-08-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2016-03-30'", + "label": "'Microsoft.Network/networkProfiles@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2016-03-30`" + "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009d5", + "sortText": "0000096b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2016-03-30'" + "newText": "'Microsoft.Network/networkProfiles@2019-09-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2016-06-01'", + "label": "'Microsoft.Network/networkProfiles@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009d4", + "sortText": "0000096a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2016-06-01'" + "newText": "'Microsoft.Network/networkProfiles@2019-11-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2016-09-01'", + "label": "'Microsoft.Network/networkProfiles@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2016-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009d3", + "sortText": "00000969", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2016-09-01'" + "newText": "'Microsoft.Network/networkProfiles@2019-12-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2016-12-01'", + "label": "'Microsoft.Network/networkProfiles@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2016-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009d2", + "sortText": "00000968", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2016-12-01'" + "newText": "'Microsoft.Network/networkProfiles@2020-03-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2017-03-01'", + "label": "'Microsoft.Network/networkProfiles@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2017-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009d1", + "sortText": "00000967", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2017-03-01'" + "newText": "'Microsoft.Network/networkProfiles@2020-04-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2017-06-01'", + "label": "'Microsoft.Network/networkProfiles@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2017-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009d0", + "sortText": "00000966", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2017-06-01'" + "newText": "'Microsoft.Network/networkProfiles@2020-05-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2017-08-01'", + "label": "'Microsoft.Network/networkProfiles@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2017-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkProfiles` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009cf", + "sortText": "00000965", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2017-08-01'" + "newText": "'Microsoft.Network/networkProfiles@2020-06-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2017-09-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2015-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2015-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "000009ce", + "sortText": "000009b6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2017-09-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2015-05-01-preview'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2017-10-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2015-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2015-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "000009cd", + "sortText": "000009b5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2017-10-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2015-06-15'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2017-11-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2016-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2017-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2016-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "000009cc", + "sortText": "000009b4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2017-11-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2016-03-30'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2018-01-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2018-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009cb", + "sortText": "000009b3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2018-01-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2016-06-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2018-02-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2016-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2016-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009ca", + "sortText": "000009b2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2018-02-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2016-09-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2018-04-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2016-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2016-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009c9", + "sortText": "000009b1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2018-04-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2016-12-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2018-06-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2017-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2017-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009c8", + "sortText": "000009b0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2018-06-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2017-03-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2018-07-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2017-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2017-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009c7", + "sortText": "000009af", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2018-07-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2017-06-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2018-08-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2017-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2017-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009c6", + "sortText": "000009ae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2018-08-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2017-08-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2018-10-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009c5", + "sortText": "000009ad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2018-10-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2017-09-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2018-11-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009c4", + "sortText": "000009ac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2018-11-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2017-10-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2018-12-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2017-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2017-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009c3", + "sortText": "000009ab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2018-12-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2017-11-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2019-02-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2018-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009c2", + "sortText": "000009aa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2019-02-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-01-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2019-04-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009c1", + "sortText": "000009a9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2019-04-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-02-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2019-06-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009c0", + "sortText": "000009a8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2019-06-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-04-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2019-07-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009bf", + "sortText": "000009a7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2019-07-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-06-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2019-08-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009be", + "sortText": "000009a6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2019-08-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-07-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2019-09-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009bd", + "sortText": "000009a5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2019-09-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-08-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2019-11-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009bc", + "sortText": "000009a4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2019-11-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-10-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2019-12-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009bb", + "sortText": "000009a3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2019-12-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-11-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2020-03-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009ba", + "sortText": "000009a2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2020-03-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2018-12-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2020-04-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009b9", + "sortText": "000009a1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2020-04-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-02-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2020-05-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009b8", + "sortText": "000009a0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2020-05-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-04-01'" } }, { - "label": "'Microsoft.Network/networkSecurityGroups@2020-06-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009b7", + "sortText": "0000099f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkSecurityGroups@2020-06-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-06-01'" } }, { - "label": "'Microsoft.Network/networkVirtualAppliances/inboundSecurityRules@2020-06-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkVirtualAppliances/inboundSecurityRules` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009fe", + "sortText": "0000099e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkVirtualAppliances/inboundSecurityRules@2020-06-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-07-01'" } }, { - "label": "'Microsoft.Network/networkVirtualAppliances/virtualApplianceSites@2020-05-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkVirtualAppliances/virtualApplianceSites` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a00", + "sortText": "0000099d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkVirtualAppliances/virtualApplianceSites@2020-05-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-08-01'" } }, { - "label": "'Microsoft.Network/networkVirtualAppliances/virtualApplianceSites@2020-06-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkVirtualAppliances/virtualApplianceSites` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009ff", + "sortText": "0000099c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkVirtualAppliances/virtualApplianceSites@2020-06-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-09-01'" } }, { - "label": "'Microsoft.Network/networkVirtualAppliances@2019-12-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkVirtualAppliances` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009fd", + "sortText": "0000099b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkVirtualAppliances@2019-12-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-11-01'" } }, { - "label": "'Microsoft.Network/networkVirtualAppliances@2020-03-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkVirtualAppliances` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009fc", + "sortText": "0000099a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkVirtualAppliances@2020-03-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2019-12-01'" } }, { - "label": "'Microsoft.Network/networkVirtualAppliances@2020-04-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkVirtualAppliances` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009fb", + "sortText": "00000999", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkVirtualAppliances@2020-04-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2020-03-01'" } }, { - "label": "'Microsoft.Network/networkVirtualAppliances@2020-05-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkVirtualAppliances` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009fa", + "sortText": "00000998", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkVirtualAppliances@2020-05-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2020-04-01'" } }, { - "label": "'Microsoft.Network/networkVirtualAppliances@2020-06-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkVirtualAppliances` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "000009f9", + "sortText": "00000997", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkVirtualAppliances@2020-06-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2020-05-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2017-10-01'", + "label": "'Microsoft.Network/networkSecurityGroups/securityRules@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups/securityRules` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a34", + "sortText": "00000996", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2017-10-01'" + "newText": "'Microsoft.Network/networkSecurityGroups/securityRules@2020-06-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2017-11-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2015-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2017-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2015-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000a33", + "sortText": "00000995", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2017-11-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2015-05-01-preview'" } }, { - "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-01-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2015-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2018-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2015-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000a32", + "sortText": "00000994", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-01-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2015-06-15'" } }, { - "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-02-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2016-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2016-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "00000a31", + "sortText": "00000993", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-02-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2016-03-30'" } }, { - "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-04-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a30", + "sortText": "00000992", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-04-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2016-06-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-06-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2016-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2016-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a2f", + "sortText": "00000991", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-06-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2016-09-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-07-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2016-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2016-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a2e", + "sortText": "00000990", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-07-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2016-12-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-08-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2017-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2017-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a2d", + "sortText": "0000098f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-08-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2017-03-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-10-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2017-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2017-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a2c", + "sortText": "0000098e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-10-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2017-06-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-11-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2017-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2017-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a2b", + "sortText": "0000098d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-11-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2017-08-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-12-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a2a", + "sortText": "0000098c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-12-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2017-09-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-02-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a29", + "sortText": "0000098b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-02-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2017-10-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-04-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2017-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2017-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a28", + "sortText": "0000098a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-04-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2017-11-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-06-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2018-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2018-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a27", + "sortText": "00000989", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-06-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2018-01-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-07-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a26", + "sortText": "00000988", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-07-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2018-02-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-08-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a25", + "sortText": "00000987", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-08-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2018-04-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-09-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a24", + "sortText": "00000986", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-09-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2018-06-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-11-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a23", + "sortText": "00000985", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-11-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2018-07-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-12-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a22", + "sortText": "00000984", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-12-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2018-08-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2020-03-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a21", + "sortText": "00000983", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2020-03-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2018-10-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2020-04-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a20", + "sortText": "00000982", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2020-04-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2018-11-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2020-05-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a1f", + "sortText": "00000981", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2020-05-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2018-12-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2020-06-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a1e", + "sortText": "00000980", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2020-06-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2019-02-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/flowLogs@2019-11-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/flowLogs` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a3a", + "sortText": "0000097f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/flowLogs@2019-11-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2019-04-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/flowLogs@2019-12-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/flowLogs` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a39", + "sortText": "0000097e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/flowLogs@2019-12-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2019-06-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/flowLogs@2020-03-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/flowLogs` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a38", + "sortText": "0000097d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/flowLogs@2020-03-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2019-07-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/flowLogs@2020-04-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/flowLogs` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a37", + "sortText": "0000097c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/flowLogs@2020-04-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2019-08-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/flowLogs@2020-05-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/flowLogs` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a36", + "sortText": "0000097b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/flowLogs@2020-05-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2019-09-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/flowLogs@2020-06-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/flowLogs` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a35", + "sortText": "0000097a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/flowLogs@2020-06-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2019-11-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2016-09-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2016-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a57", + "sortText": "00000979", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2016-09-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2019-12-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2016-12-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2016-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a56", + "sortText": "00000978", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2016-12-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2020-03-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2017-03-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2017-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a55", + "sortText": "00000977", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2017-03-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2020-04-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2017-06-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2017-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a54", + "sortText": "00000976", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2017-06-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2020-05-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2017-08-01'", + "label": "'Microsoft.Network/networkSecurityGroups@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2017-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkSecurityGroups` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a53", + "sortText": "00000975", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2017-08-01'" + "newText": "'Microsoft.Network/networkSecurityGroups@2020-06-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2017-09-01'", + "label": "'Microsoft.Network/networkVirtualAppliances/inboundSecurityRules@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkVirtualAppliances/inboundSecurityRules` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a52", + "sortText": "000009bc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2017-09-01'" + "newText": "'Microsoft.Network/networkVirtualAppliances/inboundSecurityRules@2020-06-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2017-10-01'", + "label": "'Microsoft.Network/networkVirtualAppliances/virtualApplianceSites@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkVirtualAppliances/virtualApplianceSites` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a51", + "sortText": "000009be", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2017-10-01'" + "newText": "'Microsoft.Network/networkVirtualAppliances/virtualApplianceSites@2020-05-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2017-11-01'", + "label": "'Microsoft.Network/networkVirtualAppliances/virtualApplianceSites@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2017-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkVirtualAppliances/virtualApplianceSites` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a50", + "sortText": "000009bd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2017-11-01'" + "newText": "'Microsoft.Network/networkVirtualAppliances/virtualApplianceSites@2020-06-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2018-01-01'", + "label": "'Microsoft.Network/networkVirtualAppliances@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2018-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkVirtualAppliances` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a4f", + "sortText": "000009bb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2018-01-01'" + "newText": "'Microsoft.Network/networkVirtualAppliances@2019-12-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2018-02-01'", + "label": "'Microsoft.Network/networkVirtualAppliances@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkVirtualAppliances` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a4e", + "sortText": "000009ba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2018-02-01'" + "newText": "'Microsoft.Network/networkVirtualAppliances@2020-03-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2018-04-01'", + "label": "'Microsoft.Network/networkVirtualAppliances@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkVirtualAppliances` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a4d", + "sortText": "000009b9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2018-04-01'" + "newText": "'Microsoft.Network/networkVirtualAppliances@2020-04-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2018-06-01'", + "label": "'Microsoft.Network/networkVirtualAppliances@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkVirtualAppliances` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a4c", + "sortText": "000009b8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2018-06-01'" + "newText": "'Microsoft.Network/networkVirtualAppliances@2020-05-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2018-07-01'", + "label": "'Microsoft.Network/networkVirtualAppliances@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkVirtualAppliances` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a4b", + "sortText": "000009b7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2018-07-01'" + "newText": "'Microsoft.Network/networkVirtualAppliances@2020-06-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2018-08-01'", + "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a4a", + "sortText": "000009f2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2018-08-01'" + "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2017-10-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2018-10-01'", + "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2017-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2017-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a49", + "sortText": "000009f1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2018-10-01'" + "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2017-11-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2018-11-01'", + "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2018-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a48", + "sortText": "000009f0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2018-11-01'" + "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-01-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2018-12-01'", + "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a47", + "sortText": "000009ef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2018-12-01'" + "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-02-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2019-02-01'", + "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a46", + "sortText": "000009ee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2019-02-01'" + "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-04-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2019-04-01'", + "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a45", + "sortText": "000009ed", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2019-04-01'" + "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-06-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2019-06-01'", + "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a44", + "sortText": "000009ec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2019-06-01'" + "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-07-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2019-07-01'", + "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a43", + "sortText": "000009eb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2019-07-01'" + "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-08-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2019-08-01'", + "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a42", + "sortText": "000009ea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2019-08-01'" + "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-10-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2019-09-01'", + "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a41", + "sortText": "000009e9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2019-09-01'" + "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-11-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2019-11-01'", + "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a40", + "sortText": "000009e8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2019-11-01'" + "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2018-12-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2019-12-01'", + "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a3f", + "sortText": "000009e7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2019-12-01'" + "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-02-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2020-03-01'", + "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a3e", + "sortText": "000009e6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2020-03-01'" + "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-04-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2020-04-01'", + "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a3d", + "sortText": "000009e5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2020-04-01'" + "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-06-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2020-05-01'", + "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a3c", + "sortText": "000009e4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2020-05-01'" + "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-07-01'" } }, { - "label": "'Microsoft.Network/networkWatchers/packetCaptures@2020-06-01'", + "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a3b", + "sortText": "000009e3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2020-06-01'" + "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-08-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2016-09-01'", + "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2016-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a1d", + "sortText": "000009e2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2016-09-01'" + "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-09-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2016-12-01'", + "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2016-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a1c", + "sortText": "000009e1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2016-12-01'" + "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-11-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2017-03-01'", + "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2017-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a1b", + "sortText": "000009e0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2017-03-01'" + "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2019-12-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2017-06-01'", + "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2017-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a1a", + "sortText": "000009df", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2017-06-01'" + "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2020-03-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2017-08-01'", + "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2017-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a19", + "sortText": "000009de", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2017-08-01'" + "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2020-04-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2017-09-01'", + "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a18", + "sortText": "000009dd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2017-09-01'" + "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2020-05-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2017-10-01'", + "label": "'Microsoft.Network/networkWatchers/connectionMonitors@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/connectionMonitors` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a17", + "sortText": "000009dc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2017-10-01'" + "newText": "'Microsoft.Network/networkWatchers/connectionMonitors@2020-06-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2017-11-01'", + "label": "'Microsoft.Network/networkWatchers/flowLogs@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2017-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/flowLogs` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a16", + "sortText": "000009f8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2017-11-01'" + "newText": "'Microsoft.Network/networkWatchers/flowLogs@2019-11-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2018-01-01'", + "label": "'Microsoft.Network/networkWatchers/flowLogs@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2018-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/flowLogs` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a15", + "sortText": "000009f7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2018-01-01'" + "newText": "'Microsoft.Network/networkWatchers/flowLogs@2019-12-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2018-02-01'", + "label": "'Microsoft.Network/networkWatchers/flowLogs@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/flowLogs` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a14", + "sortText": "000009f6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2018-02-01'" + "newText": "'Microsoft.Network/networkWatchers/flowLogs@2020-03-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2018-04-01'", + "label": "'Microsoft.Network/networkWatchers/flowLogs@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/flowLogs` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a13", + "sortText": "000009f5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2018-04-01'" + "newText": "'Microsoft.Network/networkWatchers/flowLogs@2020-04-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2018-06-01'", + "label": "'Microsoft.Network/networkWatchers/flowLogs@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/flowLogs` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a12", + "sortText": "000009f4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2018-06-01'" + "newText": "'Microsoft.Network/networkWatchers/flowLogs@2020-05-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2018-07-01'", + "label": "'Microsoft.Network/networkWatchers/flowLogs@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/flowLogs` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a11", + "sortText": "000009f3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2018-07-01'" + "newText": "'Microsoft.Network/networkWatchers/flowLogs@2020-06-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2018-08-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2016-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2016-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a10", + "sortText": "00000a15", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2018-08-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2016-09-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2018-10-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2016-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2016-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a0f", + "sortText": "00000a14", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2018-10-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2016-12-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2018-11-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2017-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2017-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a0e", + "sortText": "00000a13", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2018-11-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2017-03-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2018-12-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2017-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2017-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a0d", + "sortText": "00000a12", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2018-12-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2017-06-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2019-02-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2017-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2017-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a0c", + "sortText": "00000a11", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2019-02-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2017-08-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2019-04-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a0b", + "sortText": "00000a10", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2019-04-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2017-09-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2019-06-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a0a", + "sortText": "00000a0f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2019-06-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2017-10-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2019-07-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2017-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2017-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a09", + "sortText": "00000a0e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2019-07-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2017-11-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2019-08-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2018-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2018-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a08", + "sortText": "00000a0d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2019-08-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2018-01-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2019-09-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a07", + "sortText": "00000a0c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2019-09-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2018-02-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2019-11-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a06", + "sortText": "00000a0b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2019-11-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2018-04-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2019-12-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a05", + "sortText": "00000a0a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2019-12-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2018-06-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2020-03-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a04", + "sortText": "00000a09", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2020-03-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2018-07-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2020-04-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a03", + "sortText": "00000a08", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2020-04-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2018-08-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2020-05-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a02", + "sortText": "00000a07", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2020-05-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2018-10-01'" } }, { - "label": "'Microsoft.Network/networkWatchers@2020-06-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a01", + "sortText": "00000a06", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/networkWatchers@2020-06-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2018-11-01'" } }, { - "label": "'Microsoft.Network/p2svpnGateways@2018-08-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a67", + "sortText": "00000a05", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/p2svpnGateways@2018-08-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2018-12-01'" } }, { - "label": "'Microsoft.Network/p2svpnGateways@2018-10-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a66", + "sortText": "00000a04", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/p2svpnGateways@2018-10-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2019-02-01'" } }, { - "label": "'Microsoft.Network/p2svpnGateways@2018-11-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a65", + "sortText": "00000a03", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/p2svpnGateways@2018-11-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2019-04-01'" } }, { - "label": "'Microsoft.Network/p2svpnGateways@2018-12-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a64", + "sortText": "00000a02", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/p2svpnGateways@2018-12-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2019-06-01'" } }, { - "label": "'Microsoft.Network/p2svpnGateways@2019-02-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a63", + "sortText": "00000a01", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/p2svpnGateways@2019-02-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2019-07-01'" } }, { - "label": "'Microsoft.Network/p2svpnGateways@2019-04-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a62", + "sortText": "00000a00", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/p2svpnGateways@2019-04-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2019-08-01'" } }, { - "label": "'Microsoft.Network/p2svpnGateways@2019-06-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a61", + "sortText": "000009ff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/p2svpnGateways@2019-06-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2019-09-01'" } }, { - "label": "'Microsoft.Network/p2svpnGateways@2019-07-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a60", + "sortText": "000009fe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/p2svpnGateways@2019-07-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2019-11-01'" } }, { - "label": "'Microsoft.Network/p2svpnGateways@2019-08-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a5f", + "sortText": "000009fd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/p2svpnGateways@2019-08-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2019-12-01'" } }, { - "label": "'Microsoft.Network/p2svpnGateways@2019-09-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a5e", + "sortText": "000009fc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/p2svpnGateways@2019-09-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2020-03-01'" } }, { - "label": "'Microsoft.Network/p2svpnGateways@2019-11-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a5d", + "sortText": "000009fb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/p2svpnGateways@2019-11-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2020-04-01'" } }, { - "label": "'Microsoft.Network/p2svpnGateways@2019-12-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a5c", + "sortText": "000009fa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/p2svpnGateways@2019-12-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2020-05-01'" } }, { - "label": "'Microsoft.Network/p2svpnGateways@2020-03-01'", + "label": "'Microsoft.Network/networkWatchers/packetCaptures@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers/packetCaptures` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a5b", + "sortText": "000009f9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/p2svpnGateways@2020-03-01'" + "newText": "'Microsoft.Network/networkWatchers/packetCaptures@2020-06-01'" } }, { - "label": "'Microsoft.Network/p2svpnGateways@2020-04-01'", + "label": "'Microsoft.Network/networkWatchers@2016-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2016-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a5a", + "sortText": "000009db", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/p2svpnGateways@2020-04-01'" + "newText": "'Microsoft.Network/networkWatchers@2016-09-01'" } }, { - "label": "'Microsoft.Network/p2svpnGateways@2020-05-01'", + "label": "'Microsoft.Network/networkWatchers@2016-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2016-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a59", + "sortText": "000009da", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/p2svpnGateways@2020-05-01'" + "newText": "'Microsoft.Network/networkWatchers@2016-12-01'" } }, { - "label": "'Microsoft.Network/p2svpnGateways@2020-06-01'", + "label": "'Microsoft.Network/networkWatchers@2017-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2017-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a58", + "sortText": "000009d9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/p2svpnGateways@2020-06-01'" + "newText": "'Microsoft.Network/networkWatchers@2017-03-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones/A@2018-09-01'", + "label": "'Microsoft.Network/networkWatchers@2017-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/A` \nAPI Version: `2018-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2017-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a6d", + "sortText": "000009d8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones/A@2018-09-01'" + "newText": "'Microsoft.Network/networkWatchers@2017-06-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones/A@2020-01-01'", + "label": "'Microsoft.Network/networkWatchers@2017-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/A` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2017-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a6c", + "sortText": "000009d7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones/A@2020-01-01'" + "newText": "'Microsoft.Network/networkWatchers@2017-08-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones/A@2020-06-01'", + "label": "'Microsoft.Network/networkWatchers@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/A` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a6b", + "sortText": "000009d6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones/A@2020-06-01'" + "newText": "'Microsoft.Network/networkWatchers@2017-09-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones/AAAA@2018-09-01'", + "label": "'Microsoft.Network/networkWatchers@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/AAAA` \nAPI Version: `2018-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a70", + "sortText": "000009d5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones/AAAA@2018-09-01'" + "newText": "'Microsoft.Network/networkWatchers@2017-10-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones/AAAA@2020-01-01'", + "label": "'Microsoft.Network/networkWatchers@2017-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/AAAA` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2017-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a6f", + "sortText": "000009d4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones/AAAA@2020-01-01'" + "newText": "'Microsoft.Network/networkWatchers@2017-11-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones/AAAA@2020-06-01'", + "label": "'Microsoft.Network/networkWatchers@2018-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/AAAA` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2018-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a6e", + "sortText": "000009d3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones/AAAA@2020-06-01'" + "newText": "'Microsoft.Network/networkWatchers@2018-01-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones/CNAME@2018-09-01'", + "label": "'Microsoft.Network/networkWatchers@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/CNAME` \nAPI Version: `2018-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a73", + "sortText": "000009d2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones/CNAME@2018-09-01'" + "newText": "'Microsoft.Network/networkWatchers@2018-02-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones/CNAME@2020-01-01'", + "label": "'Microsoft.Network/networkWatchers@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/CNAME` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a72", + "sortText": "000009d1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones/CNAME@2020-01-01'" + "newText": "'Microsoft.Network/networkWatchers@2018-04-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones/CNAME@2020-06-01'", + "label": "'Microsoft.Network/networkWatchers@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/CNAME` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a71", + "sortText": "000009d0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones/CNAME@2020-06-01'" + "newText": "'Microsoft.Network/networkWatchers@2018-06-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones/MX@2018-09-01'", + "label": "'Microsoft.Network/networkWatchers@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/MX` \nAPI Version: `2018-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a76", + "sortText": "000009cf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones/MX@2018-09-01'" + "newText": "'Microsoft.Network/networkWatchers@2018-07-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones/MX@2020-01-01'", + "label": "'Microsoft.Network/networkWatchers@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/MX` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a75", + "sortText": "000009ce", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones/MX@2020-01-01'" + "newText": "'Microsoft.Network/networkWatchers@2018-08-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones/MX@2020-06-01'", + "label": "'Microsoft.Network/networkWatchers@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/MX` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a74", + "sortText": "000009cd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones/MX@2020-06-01'" + "newText": "'Microsoft.Network/networkWatchers@2018-10-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones/PTR@2018-09-01'", + "label": "'Microsoft.Network/networkWatchers@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/PTR` \nAPI Version: `2018-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a79", + "sortText": "000009cc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones/PTR@2018-09-01'" + "newText": "'Microsoft.Network/networkWatchers@2018-11-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones/PTR@2020-01-01'", + "label": "'Microsoft.Network/networkWatchers@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/PTR` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a78", + "sortText": "000009cb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones/PTR@2020-01-01'" + "newText": "'Microsoft.Network/networkWatchers@2018-12-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones/PTR@2020-06-01'", + "label": "'Microsoft.Network/networkWatchers@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/PTR` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a77", + "sortText": "000009ca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones/PTR@2020-06-01'" + "newText": "'Microsoft.Network/networkWatchers@2019-02-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones/SOA@2018-09-01'", + "label": "'Microsoft.Network/networkWatchers@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/SOA` \nAPI Version: `2018-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a7c", + "sortText": "000009c9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones/SOA@2018-09-01'" + "newText": "'Microsoft.Network/networkWatchers@2019-04-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones/SOA@2020-01-01'", + "label": "'Microsoft.Network/networkWatchers@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/SOA` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a7b", + "sortText": "000009c8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones/SOA@2020-01-01'" + "newText": "'Microsoft.Network/networkWatchers@2019-06-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones/SOA@2020-06-01'", + "label": "'Microsoft.Network/networkWatchers@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/SOA` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a7a", + "sortText": "000009c7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones/SOA@2020-06-01'" + "newText": "'Microsoft.Network/networkWatchers@2019-07-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones/SRV@2018-09-01'", + "label": "'Microsoft.Network/networkWatchers@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/SRV` \nAPI Version: `2018-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a7f", + "sortText": "000009c6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones/SRV@2018-09-01'" + "newText": "'Microsoft.Network/networkWatchers@2019-08-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones/SRV@2020-01-01'", + "label": "'Microsoft.Network/networkWatchers@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/SRV` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a7e", + "sortText": "000009c5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones/SRV@2020-01-01'" + "newText": "'Microsoft.Network/networkWatchers@2019-09-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones/SRV@2020-06-01'", + "label": "'Microsoft.Network/networkWatchers@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/SRV` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a7d", + "sortText": "000009c4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones/SRV@2020-06-01'" + "newText": "'Microsoft.Network/networkWatchers@2019-11-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones/TXT@2018-09-01'", + "label": "'Microsoft.Network/networkWatchers@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/TXT` \nAPI Version: `2018-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a82", + "sortText": "000009c3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones/TXT@2018-09-01'" + "newText": "'Microsoft.Network/networkWatchers@2019-12-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones/TXT@2020-01-01'", + "label": "'Microsoft.Network/networkWatchers@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/TXT` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a81", + "sortText": "000009c2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones/TXT@2020-01-01'" + "newText": "'Microsoft.Network/networkWatchers@2020-03-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones/TXT@2020-06-01'", + "label": "'Microsoft.Network/networkWatchers@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/TXT` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a80", + "sortText": "000009c1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones/TXT@2020-06-01'" + "newText": "'Microsoft.Network/networkWatchers@2020-04-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones/virtualNetworkLinks@2018-09-01'", + "label": "'Microsoft.Network/networkWatchers@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/virtualNetworkLinks` \nAPI Version: `2018-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a85", + "sortText": "000009c0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones/virtualNetworkLinks@2018-09-01'" + "newText": "'Microsoft.Network/networkWatchers@2020-05-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones/virtualNetworkLinks@2020-01-01'", + "label": "'Microsoft.Network/networkWatchers@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/virtualNetworkLinks` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `networkWatchers` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a84", + "sortText": "000009bf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones/virtualNetworkLinks@2020-01-01'" + "newText": "'Microsoft.Network/networkWatchers@2020-06-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones/virtualNetworkLinks@2020-06-01'", + "label": "'Microsoft.Network/p2svpnGateways@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/virtualNetworkLinks` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a83", + "sortText": "00000a25", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones/virtualNetworkLinks@2020-06-01'" + "newText": "'Microsoft.Network/p2svpnGateways@2018-08-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones@2018-09-01'", + "label": "'Microsoft.Network/p2svpnGateways@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones` \nAPI Version: `2018-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a6a", + "sortText": "00000a24", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones@2018-09-01'" + "newText": "'Microsoft.Network/p2svpnGateways@2018-10-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones@2020-01-01'", + "label": "'Microsoft.Network/p2svpnGateways@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a69", + "sortText": "00000a23", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones@2020-01-01'" + "newText": "'Microsoft.Network/p2svpnGateways@2018-11-01'" } }, { - "label": "'Microsoft.Network/privateDnsZones@2020-06-01'", + "label": "'Microsoft.Network/p2svpnGateways@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a68", + "sortText": "00000a22", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateDnsZones@2020-06-01'" + "newText": "'Microsoft.Network/p2svpnGateways@2018-12-01'" } }, { - "label": "'Microsoft.Network/privateEndpoints/privateDnsZoneGroups@2020-03-01'", + "label": "'Microsoft.Network/p2svpnGateways@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints/privateDnsZoneGroups` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a94", + "sortText": "00000a21", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateEndpoints/privateDnsZoneGroups@2020-03-01'" + "newText": "'Microsoft.Network/p2svpnGateways@2019-02-01'" } }, { - "label": "'Microsoft.Network/privateEndpoints/privateDnsZoneGroups@2020-04-01'", + "label": "'Microsoft.Network/p2svpnGateways@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints/privateDnsZoneGroups` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a93", + "sortText": "00000a20", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateEndpoints/privateDnsZoneGroups@2020-04-01'" + "newText": "'Microsoft.Network/p2svpnGateways@2019-04-01'" } }, { - "label": "'Microsoft.Network/privateEndpoints/privateDnsZoneGroups@2020-05-01'", + "label": "'Microsoft.Network/p2svpnGateways@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints/privateDnsZoneGroups` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a92", + "sortText": "00000a1f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateEndpoints/privateDnsZoneGroups@2020-05-01'" + "newText": "'Microsoft.Network/p2svpnGateways@2019-06-01'" } }, { - "label": "'Microsoft.Network/privateEndpoints/privateDnsZoneGroups@2020-06-01'", + "label": "'Microsoft.Network/p2svpnGateways@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints/privateDnsZoneGroups` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a91", + "sortText": "00000a1e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateEndpoints/privateDnsZoneGroups@2020-06-01'" + "newText": "'Microsoft.Network/p2svpnGateways@2019-07-01'" } }, { - "label": "'Microsoft.Network/privateEndpoints@2019-04-01'", + "label": "'Microsoft.Network/p2svpnGateways@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a90", + "sortText": "00000a1d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateEndpoints@2019-04-01'" + "newText": "'Microsoft.Network/p2svpnGateways@2019-08-01'" } }, { - "label": "'Microsoft.Network/privateEndpoints@2019-06-01'", + "label": "'Microsoft.Network/p2svpnGateways@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a8f", + "sortText": "00000a1c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateEndpoints@2019-06-01'" + "newText": "'Microsoft.Network/p2svpnGateways@2019-09-01'" } }, { - "label": "'Microsoft.Network/privateEndpoints@2019-07-01'", + "label": "'Microsoft.Network/p2svpnGateways@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a8e", + "sortText": "00000a1b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateEndpoints@2019-07-01'" + "newText": "'Microsoft.Network/p2svpnGateways@2019-11-01'" } }, { - "label": "'Microsoft.Network/privateEndpoints@2019-08-01'", + "label": "'Microsoft.Network/p2svpnGateways@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a8d", + "sortText": "00000a1a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateEndpoints@2019-08-01'" + "newText": "'Microsoft.Network/p2svpnGateways@2019-12-01'" } }, { - "label": "'Microsoft.Network/privateEndpoints@2019-09-01'", + "label": "'Microsoft.Network/p2svpnGateways@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a8c", + "sortText": "00000a19", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateEndpoints@2019-09-01'" + "newText": "'Microsoft.Network/p2svpnGateways@2020-03-01'" } }, { - "label": "'Microsoft.Network/privateEndpoints@2019-11-01'", + "label": "'Microsoft.Network/p2svpnGateways@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a8b", + "sortText": "00000a18", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateEndpoints@2019-11-01'" + "newText": "'Microsoft.Network/p2svpnGateways@2020-04-01'" } }, { - "label": "'Microsoft.Network/privateEndpoints@2019-12-01'", + "label": "'Microsoft.Network/p2svpnGateways@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a8a", + "sortText": "00000a17", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateEndpoints@2019-12-01'" + "newText": "'Microsoft.Network/p2svpnGateways@2020-05-01'" } }, { - "label": "'Microsoft.Network/privateEndpoints@2020-03-01'", + "label": "'Microsoft.Network/p2svpnGateways@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `p2svpnGateways` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a89", + "sortText": "00000a16", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateEndpoints@2020-03-01'" + "newText": "'Microsoft.Network/p2svpnGateways@2020-06-01'" } }, { - "label": "'Microsoft.Network/privateEndpoints@2020-04-01'", + "label": "'Microsoft.Network/privateDnsZones/A@2018-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/A` \nAPI Version: `2018-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a88", + "sortText": "00000a2b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateEndpoints@2020-04-01'" + "newText": "'Microsoft.Network/privateDnsZones/A@2018-09-01'" } }, { - "label": "'Microsoft.Network/privateEndpoints@2020-05-01'", + "label": "'Microsoft.Network/privateDnsZones/A@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/A` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a87", + "sortText": "00000a2a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateEndpoints@2020-05-01'" + "newText": "'Microsoft.Network/privateDnsZones/A@2020-01-01'" } }, { - "label": "'Microsoft.Network/privateEndpoints@2020-06-01'", + "label": "'Microsoft.Network/privateDnsZones/A@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/A` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a86", + "sortText": "00000a29", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateEndpoints@2020-06-01'" + "newText": "'Microsoft.Network/privateDnsZones/A@2020-06-01'" } }, { - "label": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-04-01'", + "label": "'Microsoft.Network/privateDnsZones/AAAA@2018-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices/privateEndpointConnections` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/AAAA` \nAPI Version: `2018-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000aaa", + "sortText": "00000a2e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-04-01'" + "newText": "'Microsoft.Network/privateDnsZones/AAAA@2018-09-01'" } }, { - "label": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-06-01'", + "label": "'Microsoft.Network/privateDnsZones/AAAA@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices/privateEndpointConnections` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/AAAA` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000aa9", + "sortText": "00000a2d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-06-01'" + "newText": "'Microsoft.Network/privateDnsZones/AAAA@2020-01-01'" } }, { - "label": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-07-01'", + "label": "'Microsoft.Network/privateDnsZones/AAAA@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices/privateEndpointConnections` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/AAAA` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000aa8", + "sortText": "00000a2c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-07-01'" + "newText": "'Microsoft.Network/privateDnsZones/AAAA@2020-06-01'" } }, { - "label": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-08-01'", + "label": "'Microsoft.Network/privateDnsZones/CNAME@2018-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices/privateEndpointConnections` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/CNAME` \nAPI Version: `2018-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000aa7", + "sortText": "00000a31", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-08-01'" + "newText": "'Microsoft.Network/privateDnsZones/CNAME@2018-09-01'" } }, { - "label": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-09-01'", + "label": "'Microsoft.Network/privateDnsZones/CNAME@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices/privateEndpointConnections` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/CNAME` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000aa6", + "sortText": "00000a30", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-09-01'" + "newText": "'Microsoft.Network/privateDnsZones/CNAME@2020-01-01'" } }, { - "label": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-11-01'", + "label": "'Microsoft.Network/privateDnsZones/CNAME@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices/privateEndpointConnections` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/CNAME` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000aa5", + "sortText": "00000a2f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-11-01'" + "newText": "'Microsoft.Network/privateDnsZones/CNAME@2020-06-01'" } }, { - "label": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-12-01'", + "label": "'Microsoft.Network/privateDnsZones/MX@2018-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices/privateEndpointConnections` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/MX` \nAPI Version: `2018-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000aa4", + "sortText": "00000a34", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-12-01'" + "newText": "'Microsoft.Network/privateDnsZones/MX@2018-09-01'" } }, { - "label": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2020-03-01'", + "label": "'Microsoft.Network/privateDnsZones/MX@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices/privateEndpointConnections` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/MX` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000aa3", + "sortText": "00000a33", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2020-03-01'" + "newText": "'Microsoft.Network/privateDnsZones/MX@2020-01-01'" } }, { - "label": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2020-04-01'", + "label": "'Microsoft.Network/privateDnsZones/MX@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices/privateEndpointConnections` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/MX` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000aa2", + "sortText": "00000a32", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2020-04-01'" + "newText": "'Microsoft.Network/privateDnsZones/MX@2020-06-01'" } }, { - "label": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2020-05-01'", + "label": "'Microsoft.Network/privateDnsZones/PTR@2018-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices/privateEndpointConnections` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/PTR` \nAPI Version: `2018-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000aa1", + "sortText": "00000a37", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2020-05-01'" + "newText": "'Microsoft.Network/privateDnsZones/PTR@2018-09-01'" } }, { - "label": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2020-06-01'", + "label": "'Microsoft.Network/privateDnsZones/PTR@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices/privateEndpointConnections` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/PTR` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000aa0", + "sortText": "00000a36", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2020-06-01'" + "newText": "'Microsoft.Network/privateDnsZones/PTR@2020-01-01'" } }, { - "label": "'Microsoft.Network/privateLinkServices@2019-04-01'", + "label": "'Microsoft.Network/privateDnsZones/PTR@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/PTR` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a9f", + "sortText": "00000a35", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateLinkServices@2019-04-01'" + "newText": "'Microsoft.Network/privateDnsZones/PTR@2020-06-01'" } }, { - "label": "'Microsoft.Network/privateLinkServices@2019-06-01'", + "label": "'Microsoft.Network/privateDnsZones/SOA@2018-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/SOA` \nAPI Version: `2018-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a9e", + "sortText": "00000a3a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateLinkServices@2019-06-01'" + "newText": "'Microsoft.Network/privateDnsZones/SOA@2018-09-01'" } }, { - "label": "'Microsoft.Network/privateLinkServices@2019-07-01'", + "label": "'Microsoft.Network/privateDnsZones/SOA@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/SOA` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a9d", + "sortText": "00000a39", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateLinkServices@2019-07-01'" + "newText": "'Microsoft.Network/privateDnsZones/SOA@2020-01-01'" } }, { - "label": "'Microsoft.Network/privateLinkServices@2019-08-01'", + "label": "'Microsoft.Network/privateDnsZones/SOA@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/SOA` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a9c", + "sortText": "00000a38", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateLinkServices@2019-08-01'" + "newText": "'Microsoft.Network/privateDnsZones/SOA@2020-06-01'" } }, { - "label": "'Microsoft.Network/privateLinkServices@2019-09-01'", + "label": "'Microsoft.Network/privateDnsZones/SRV@2018-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/SRV` \nAPI Version: `2018-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a9b", + "sortText": "00000a3d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateLinkServices@2019-09-01'" + "newText": "'Microsoft.Network/privateDnsZones/SRV@2018-09-01'" } }, { - "label": "'Microsoft.Network/privateLinkServices@2019-11-01'", + "label": "'Microsoft.Network/privateDnsZones/SRV@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/SRV` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a9a", + "sortText": "00000a3c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateLinkServices@2019-11-01'" + "newText": "'Microsoft.Network/privateDnsZones/SRV@2020-01-01'" } }, { - "label": "'Microsoft.Network/privateLinkServices@2019-12-01'", + "label": "'Microsoft.Network/privateDnsZones/SRV@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/SRV` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a99", + "sortText": "00000a3b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateLinkServices@2019-12-01'" + "newText": "'Microsoft.Network/privateDnsZones/SRV@2020-06-01'" } }, { - "label": "'Microsoft.Network/privateLinkServices@2020-03-01'", + "label": "'Microsoft.Network/privateDnsZones/TXT@2018-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/TXT` \nAPI Version: `2018-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a98", + "sortText": "00000a40", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateLinkServices@2020-03-01'" + "newText": "'Microsoft.Network/privateDnsZones/TXT@2018-09-01'" } }, { - "label": "'Microsoft.Network/privateLinkServices@2020-04-01'", + "label": "'Microsoft.Network/privateDnsZones/TXT@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/TXT` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a97", + "sortText": "00000a3f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateLinkServices@2020-04-01'" + "newText": "'Microsoft.Network/privateDnsZones/TXT@2020-01-01'" } }, { - "label": "'Microsoft.Network/privateLinkServices@2020-05-01'", + "label": "'Microsoft.Network/privateDnsZones/TXT@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/TXT` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a96", + "sortText": "00000a3e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateLinkServices@2020-05-01'" + "newText": "'Microsoft.Network/privateDnsZones/TXT@2020-06-01'" } }, { - "label": "'Microsoft.Network/privateLinkServices@2020-06-01'", + "label": "'Microsoft.Network/privateDnsZones/virtualNetworkLinks@2018-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/virtualNetworkLinks` \nAPI Version: `2018-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000a95", + "sortText": "00000a43", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/privateLinkServices@2020-06-01'" + "newText": "'Microsoft.Network/privateDnsZones/virtualNetworkLinks@2018-09-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2015-05-01-preview'", + "label": "'Microsoft.Network/privateDnsZones/virtualNetworkLinks@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2015-05-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/virtualNetworkLinks` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000acb", + "sortText": "00000a42", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2015-05-01-preview'" + "newText": "'Microsoft.Network/privateDnsZones/virtualNetworkLinks@2020-01-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2015-06-15'", + "label": "'Microsoft.Network/privateDnsZones/virtualNetworkLinks@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2015-06-15`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones/virtualNetworkLinks` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000aca", + "sortText": "00000a41", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2015-06-15'" + "newText": "'Microsoft.Network/privateDnsZones/virtualNetworkLinks@2020-06-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2016-03-30'", + "label": "'Microsoft.Network/privateDnsZones@2018-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2016-03-30`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones` \nAPI Version: `2018-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ac9", + "sortText": "00000a28", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2016-03-30'" + "newText": "'Microsoft.Network/privateDnsZones@2018-09-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2016-06-01'", + "label": "'Microsoft.Network/privateDnsZones@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ac8", + "sortText": "00000a27", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2016-06-01'" + "newText": "'Microsoft.Network/privateDnsZones@2020-01-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2016-09-01'", + "label": "'Microsoft.Network/privateDnsZones@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2016-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateDnsZones` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ac7", + "sortText": "00000a26", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2016-09-01'" + "newText": "'Microsoft.Network/privateDnsZones@2020-06-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2016-12-01'", + "label": "'Microsoft.Network/privateEndpoints/privateDnsZoneGroups@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2016-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints/privateDnsZoneGroups` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ac6", + "sortText": "00000a52", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2016-12-01'" + "newText": "'Microsoft.Network/privateEndpoints/privateDnsZoneGroups@2020-03-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2017-03-01'", + "label": "'Microsoft.Network/privateEndpoints/privateDnsZoneGroups@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2017-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints/privateDnsZoneGroups` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ac5", + "sortText": "00000a51", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2017-03-01'" + "newText": "'Microsoft.Network/privateEndpoints/privateDnsZoneGroups@2020-04-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2017-06-01'", + "label": "'Microsoft.Network/privateEndpoints/privateDnsZoneGroups@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2017-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints/privateDnsZoneGroups` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ac4", + "sortText": "00000a50", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2017-06-01'" + "newText": "'Microsoft.Network/privateEndpoints/privateDnsZoneGroups@2020-05-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2017-08-01'", + "label": "'Microsoft.Network/privateEndpoints/privateDnsZoneGroups@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2017-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints/privateDnsZoneGroups` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ac3", + "sortText": "00000a4f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2017-08-01'" + "newText": "'Microsoft.Network/privateEndpoints/privateDnsZoneGroups@2020-06-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2017-09-01'", + "label": "'Microsoft.Network/privateEndpoints@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ac2", + "sortText": "00000a4e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2017-09-01'" + "newText": "'Microsoft.Network/privateEndpoints@2019-04-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2017-10-01'", + "label": "'Microsoft.Network/privateEndpoints@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ac1", + "sortText": "00000a4d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2017-10-01'" + "newText": "'Microsoft.Network/privateEndpoints@2019-06-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2017-11-01'", + "label": "'Microsoft.Network/privateEndpoints@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2017-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ac0", + "sortText": "00000a4c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2017-11-01'" + "newText": "'Microsoft.Network/privateEndpoints@2019-07-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2018-01-01'", + "label": "'Microsoft.Network/privateEndpoints@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2018-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000abf", + "sortText": "00000a4b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2018-01-01'" + "newText": "'Microsoft.Network/privateEndpoints@2019-08-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2018-02-01'", + "label": "'Microsoft.Network/privateEndpoints@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000abe", + "sortText": "00000a4a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2018-02-01'" + "newText": "'Microsoft.Network/privateEndpoints@2019-09-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2018-04-01'", + "label": "'Microsoft.Network/privateEndpoints@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000abd", + "sortText": "00000a49", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2018-04-01'" + "newText": "'Microsoft.Network/privateEndpoints@2019-11-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2018-06-01'", + "label": "'Microsoft.Network/privateEndpoints@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000abc", + "sortText": "00000a48", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2018-06-01'" + "newText": "'Microsoft.Network/privateEndpoints@2019-12-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2018-07-01'", + "label": "'Microsoft.Network/privateEndpoints@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000abb", + "sortText": "00000a47", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2018-07-01'" + "newText": "'Microsoft.Network/privateEndpoints@2020-03-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2018-08-01'", + "label": "'Microsoft.Network/privateEndpoints@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000aba", + "sortText": "00000a46", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2018-08-01'" + "newText": "'Microsoft.Network/privateEndpoints@2020-04-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2018-10-01'", + "label": "'Microsoft.Network/privateEndpoints@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ab9", + "sortText": "00000a45", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2018-10-01'" + "newText": "'Microsoft.Network/privateEndpoints@2020-05-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2018-11-01'", + "label": "'Microsoft.Network/privateEndpoints@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateEndpoints` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ab8", + "sortText": "00000a44", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2018-11-01'" + "newText": "'Microsoft.Network/privateEndpoints@2020-06-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2018-12-01'", + "label": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices/privateEndpointConnections` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ab7", + "sortText": "00000a68", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2018-12-01'" + "newText": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-04-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2019-02-01'", + "label": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices/privateEndpointConnections` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ab6", + "sortText": "00000a67", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2019-02-01'" + "newText": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-06-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2019-04-01'", + "label": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices/privateEndpointConnections` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ab5", + "sortText": "00000a66", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2019-04-01'" + "newText": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-07-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2019-06-01'", + "label": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices/privateEndpointConnections` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ab4", + "sortText": "00000a65", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2019-06-01'" + "newText": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-08-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2019-07-01'", + "label": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices/privateEndpointConnections` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ab3", + "sortText": "00000a64", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2019-07-01'" + "newText": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-09-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2019-08-01'", + "label": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices/privateEndpointConnections` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ab2", + "sortText": "00000a63", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2019-08-01'" + "newText": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-11-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2019-09-01'", + "label": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices/privateEndpointConnections` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ab1", + "sortText": "00000a62", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2019-09-01'" + "newText": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2019-12-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2019-11-01'", + "label": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices/privateEndpointConnections` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ab0", + "sortText": "00000a61", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2019-11-01'" + "newText": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2020-03-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2019-12-01'", + "label": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices/privateEndpointConnections` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000aaf", + "sortText": "00000a60", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2019-12-01'" + "newText": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2020-04-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2020-03-01'", + "label": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices/privateEndpointConnections` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000aae", + "sortText": "00000a5f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2020-03-01'" + "newText": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2020-05-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2020-04-01'", + "label": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices/privateEndpointConnections` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000aad", + "sortText": "00000a5e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2020-04-01'" + "newText": "'Microsoft.Network/privateLinkServices/privateEndpointConnections@2020-06-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2020-05-01'", + "label": "'Microsoft.Network/privateLinkServices@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000aac", + "sortText": "00000a5d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2020-05-01'" + "newText": "'Microsoft.Network/privateLinkServices@2019-04-01'" } }, { - "label": "'Microsoft.Network/publicIPAddresses@2020-06-01'", + "label": "'Microsoft.Network/privateLinkServices@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000aab", + "sortText": "00000a5c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPAddresses@2020-06-01'" + "newText": "'Microsoft.Network/privateLinkServices@2019-06-01'" } }, { - "label": "'Microsoft.Network/publicIPPrefixes@2018-07-01'", + "label": "'Microsoft.Network/privateLinkServices@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000adc", + "sortText": "00000a5b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPPrefixes@2018-07-01'" + "newText": "'Microsoft.Network/privateLinkServices@2019-07-01'" } }, { - "label": "'Microsoft.Network/publicIPPrefixes@2018-08-01'", + "label": "'Microsoft.Network/privateLinkServices@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000adb", + "sortText": "00000a5a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPPrefixes@2018-08-01'" + "newText": "'Microsoft.Network/privateLinkServices@2019-08-01'" } }, { - "label": "'Microsoft.Network/publicIPPrefixes@2018-10-01'", + "label": "'Microsoft.Network/privateLinkServices@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ada", + "sortText": "00000a59", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPPrefixes@2018-10-01'" + "newText": "'Microsoft.Network/privateLinkServices@2019-09-01'" } }, { - "label": "'Microsoft.Network/publicIPPrefixes@2018-11-01'", + "label": "'Microsoft.Network/privateLinkServices@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ad9", + "sortText": "00000a58", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPPrefixes@2018-11-01'" + "newText": "'Microsoft.Network/privateLinkServices@2019-11-01'" } }, { - "label": "'Microsoft.Network/publicIPPrefixes@2018-12-01'", + "label": "'Microsoft.Network/privateLinkServices@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ad8", + "sortText": "00000a57", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPPrefixes@2018-12-01'" + "newText": "'Microsoft.Network/privateLinkServices@2019-12-01'" } }, { - "label": "'Microsoft.Network/publicIPPrefixes@2019-02-01'", + "label": "'Microsoft.Network/privateLinkServices@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ad7", + "sortText": "00000a56", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPPrefixes@2019-02-01'" + "newText": "'Microsoft.Network/privateLinkServices@2020-03-01'" } }, { - "label": "'Microsoft.Network/publicIPPrefixes@2019-04-01'", + "label": "'Microsoft.Network/privateLinkServices@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ad6", + "sortText": "00000a55", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPPrefixes@2019-04-01'" + "newText": "'Microsoft.Network/privateLinkServices@2020-04-01'" } }, { - "label": "'Microsoft.Network/publicIPPrefixes@2019-06-01'", + "label": "'Microsoft.Network/privateLinkServices@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ad5", + "sortText": "00000a54", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPPrefixes@2019-06-01'" + "newText": "'Microsoft.Network/privateLinkServices@2020-05-01'" } }, { - "label": "'Microsoft.Network/publicIPPrefixes@2019-07-01'", + "label": "'Microsoft.Network/privateLinkServices@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `privateLinkServices` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ad4", + "sortText": "00000a53", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPPrefixes@2019-07-01'" + "newText": "'Microsoft.Network/privateLinkServices@2020-06-01'" } }, { - "label": "'Microsoft.Network/publicIPPrefixes@2019-08-01'", + "label": "'Microsoft.Network/publicIPAddresses@2015-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2015-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000ad3", + "sortText": "00000a89", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPPrefixes@2019-08-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2015-05-01-preview'" } }, { - "label": "'Microsoft.Network/publicIPPrefixes@2019-09-01'", + "label": "'Microsoft.Network/publicIPAddresses@2015-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2015-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000ad2", + "sortText": "00000a88", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPPrefixes@2019-09-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2015-06-15'" } }, { - "label": "'Microsoft.Network/publicIPPrefixes@2019-11-01'", + "label": "'Microsoft.Network/publicIPAddresses@2016-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2016-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "00000ad1", + "sortText": "00000a87", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPPrefixes@2019-11-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2016-03-30'" } }, { - "label": "'Microsoft.Network/publicIPPrefixes@2019-12-01'", + "label": "'Microsoft.Network/publicIPAddresses@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ad0", + "sortText": "00000a86", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPPrefixes@2019-12-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2016-06-01'" } }, { - "label": "'Microsoft.Network/publicIPPrefixes@2020-03-01'", + "label": "'Microsoft.Network/publicIPAddresses@2016-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2016-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000acf", + "sortText": "00000a85", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPPrefixes@2020-03-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2016-09-01'" } }, { - "label": "'Microsoft.Network/publicIPPrefixes@2020-04-01'", + "label": "'Microsoft.Network/publicIPAddresses@2016-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2016-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ace", + "sortText": "00000a84", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPPrefixes@2020-04-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2016-12-01'" } }, { - "label": "'Microsoft.Network/publicIPPrefixes@2020-05-01'", + "label": "'Microsoft.Network/publicIPAddresses@2017-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2017-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000acd", + "sortText": "00000a83", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPPrefixes@2020-05-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2017-03-01'" } }, { - "label": "'Microsoft.Network/publicIPPrefixes@2020-06-01'", + "label": "'Microsoft.Network/publicIPAddresses@2017-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2017-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000acc", + "sortText": "00000a82", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/publicIPPrefixes@2020-06-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2017-06-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2016-12-01'", + "label": "'Microsoft.Network/publicIPAddresses@2017-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2016-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2017-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b14", + "sortText": "00000a81", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2016-12-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2017-08-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2017-03-01'", + "label": "'Microsoft.Network/publicIPAddresses@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2017-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b13", + "sortText": "00000a80", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2017-03-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2017-09-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2017-06-01'", + "label": "'Microsoft.Network/publicIPAddresses@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2017-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b12", + "sortText": "00000a7f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2017-06-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2017-10-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2017-08-01'", + "label": "'Microsoft.Network/publicIPAddresses@2017-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2017-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2017-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b11", + "sortText": "00000a7e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2017-08-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2017-11-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2017-09-01'", + "label": "'Microsoft.Network/publicIPAddresses@2018-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2018-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b10", + "sortText": "00000a7d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2017-09-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2018-01-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2017-10-01'", + "label": "'Microsoft.Network/publicIPAddresses@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b0f", + "sortText": "00000a7c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2017-10-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2018-02-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2017-11-01'", + "label": "'Microsoft.Network/publicIPAddresses@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2017-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b0e", + "sortText": "00000a7b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2017-11-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2018-04-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2018-01-01'", + "label": "'Microsoft.Network/publicIPAddresses@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2018-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b0d", + "sortText": "00000a7a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2018-01-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2018-06-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2018-02-01'", + "label": "'Microsoft.Network/publicIPAddresses@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b0c", + "sortText": "00000a79", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2018-02-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2018-07-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2018-04-01'", + "label": "'Microsoft.Network/publicIPAddresses@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b0b", + "sortText": "00000a78", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2018-04-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2018-08-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2018-06-01'", + "label": "'Microsoft.Network/publicIPAddresses@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b0a", + "sortText": "00000a77", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2018-06-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2018-10-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2018-07-01'", + "label": "'Microsoft.Network/publicIPAddresses@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b09", + "sortText": "00000a76", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2018-07-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2018-11-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2018-08-01'", + "label": "'Microsoft.Network/publicIPAddresses@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b08", + "sortText": "00000a75", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2018-08-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2018-12-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2018-10-01'", + "label": "'Microsoft.Network/publicIPAddresses@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b07", + "sortText": "00000a74", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2018-10-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2019-02-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2018-11-01'", + "label": "'Microsoft.Network/publicIPAddresses@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b06", + "sortText": "00000a73", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2018-11-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2019-04-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2018-12-01'", + "label": "'Microsoft.Network/publicIPAddresses@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b05", + "sortText": "00000a72", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2018-12-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2019-06-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2019-02-01'", + "label": "'Microsoft.Network/publicIPAddresses@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b04", + "sortText": "00000a71", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2019-02-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2019-07-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2019-04-01'", + "label": "'Microsoft.Network/publicIPAddresses@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b03", + "sortText": "00000a70", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2019-04-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2019-08-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2019-06-01'", + "label": "'Microsoft.Network/publicIPAddresses@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b02", + "sortText": "00000a6f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2019-06-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2019-09-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2019-07-01'", + "label": "'Microsoft.Network/publicIPAddresses@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b01", + "sortText": "00000a6e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2019-07-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2019-11-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2019-08-01'", + "label": "'Microsoft.Network/publicIPAddresses@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b00", + "sortText": "00000a6d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2019-08-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2019-12-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2019-09-01'", + "label": "'Microsoft.Network/publicIPAddresses@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000aff", + "sortText": "00000a6c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2019-09-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2020-03-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2019-11-01'", + "label": "'Microsoft.Network/publicIPAddresses@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000afe", + "sortText": "00000a6b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2019-11-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2020-04-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2019-12-01'", + "label": "'Microsoft.Network/publicIPAddresses@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000afd", + "sortText": "00000a6a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2019-12-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2020-05-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2020-03-01'", + "label": "'Microsoft.Network/publicIPAddresses@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPAddresses` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000afc", + "sortText": "00000a69", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2020-03-01'" + "newText": "'Microsoft.Network/publicIPAddresses@2020-06-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2020-04-01'", + "label": "'Microsoft.Network/publicIPPrefixes@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000afb", + "sortText": "00000a9a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2020-04-01'" + "newText": "'Microsoft.Network/publicIPPrefixes@2018-07-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2020-05-01'", + "label": "'Microsoft.Network/publicIPPrefixes@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000afa", + "sortText": "00000a99", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2020-05-01'" + "newText": "'Microsoft.Network/publicIPPrefixes@2018-08-01'" } }, { - "label": "'Microsoft.Network/routeFilters/routeFilterRules@2020-06-01'", + "label": "'Microsoft.Network/publicIPPrefixes@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000af9", + "sortText": "00000a98", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2020-06-01'" + "newText": "'Microsoft.Network/publicIPPrefixes@2018-10-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2016-12-01'", + "label": "'Microsoft.Network/publicIPPrefixes@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2016-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000af8", + "sortText": "00000a97", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2016-12-01'" + "newText": "'Microsoft.Network/publicIPPrefixes@2018-11-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2017-03-01'", + "label": "'Microsoft.Network/publicIPPrefixes@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2017-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000af7", + "sortText": "00000a96", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2017-03-01'" + "newText": "'Microsoft.Network/publicIPPrefixes@2018-12-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2017-06-01'", + "label": "'Microsoft.Network/publicIPPrefixes@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2017-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000af6", + "sortText": "00000a95", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2017-06-01'" + "newText": "'Microsoft.Network/publicIPPrefixes@2019-02-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2017-08-01'", + "label": "'Microsoft.Network/publicIPPrefixes@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2017-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000af5", + "sortText": "00000a94", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2017-08-01'" + "newText": "'Microsoft.Network/publicIPPrefixes@2019-04-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2017-09-01'", + "label": "'Microsoft.Network/publicIPPrefixes@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000af4", + "sortText": "00000a93", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2017-09-01'" + "newText": "'Microsoft.Network/publicIPPrefixes@2019-06-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2017-10-01'", + "label": "'Microsoft.Network/publicIPPrefixes@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000af3", + "sortText": "00000a92", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2017-10-01'" + "newText": "'Microsoft.Network/publicIPPrefixes@2019-07-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2017-11-01'", + "label": "'Microsoft.Network/publicIPPrefixes@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2017-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000af2", + "sortText": "00000a91", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2017-11-01'" + "newText": "'Microsoft.Network/publicIPPrefixes@2019-08-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2018-01-01'", + "label": "'Microsoft.Network/publicIPPrefixes@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2018-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000af1", + "sortText": "00000a90", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2018-01-01'" + "newText": "'Microsoft.Network/publicIPPrefixes@2019-09-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2018-02-01'", + "label": "'Microsoft.Network/publicIPPrefixes@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000af0", + "sortText": "00000a8f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2018-02-01'" + "newText": "'Microsoft.Network/publicIPPrefixes@2019-11-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2018-04-01'", + "label": "'Microsoft.Network/publicIPPrefixes@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000aef", + "sortText": "00000a8e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2018-04-01'" + "newText": "'Microsoft.Network/publicIPPrefixes@2019-12-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2018-06-01'", + "label": "'Microsoft.Network/publicIPPrefixes@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000aee", + "sortText": "00000a8d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2018-06-01'" + "newText": "'Microsoft.Network/publicIPPrefixes@2020-03-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2018-07-01'", + "label": "'Microsoft.Network/publicIPPrefixes@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000aed", + "sortText": "00000a8c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2018-07-01'" + "newText": "'Microsoft.Network/publicIPPrefixes@2020-04-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2018-08-01'", + "label": "'Microsoft.Network/publicIPPrefixes@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000aec", + "sortText": "00000a8b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2018-08-01'" + "newText": "'Microsoft.Network/publicIPPrefixes@2020-05-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2018-10-01'", + "label": "'Microsoft.Network/publicIPPrefixes@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `publicIPPrefixes` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000aeb", + "sortText": "00000a8a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2018-10-01'" + "newText": "'Microsoft.Network/publicIPPrefixes@2020-06-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2018-11-01'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2016-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2016-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000aea", + "sortText": "00000ad2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2018-11-01'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2016-12-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2018-12-01'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2017-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2017-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ae9", + "sortText": "00000ad1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2018-12-01'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2017-03-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2019-02-01'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2017-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2017-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ae8", + "sortText": "00000ad0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2019-02-01'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2017-06-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2019-04-01'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2017-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2017-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ae7", + "sortText": "00000acf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2019-04-01'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2017-08-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2019-06-01'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ae6", + "sortText": "00000ace", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2019-06-01'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2017-09-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2019-07-01'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ae5", + "sortText": "00000acd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2019-07-01'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2017-10-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2019-08-01'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2017-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2017-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ae4", + "sortText": "00000acc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2019-08-01'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2017-11-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2019-09-01'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2018-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2018-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ae3", + "sortText": "00000acb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2019-09-01'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2018-01-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2019-11-01'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ae2", + "sortText": "00000aca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2019-11-01'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2018-02-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2019-12-01'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ae1", + "sortText": "00000ac9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2019-12-01'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2018-04-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2020-03-01'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ae0", + "sortText": "00000ac8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2020-03-01'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2018-06-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2020-04-01'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000adf", + "sortText": "00000ac7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2020-04-01'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2018-07-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2020-05-01'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ade", + "sortText": "00000ac6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2020-05-01'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2018-08-01'" } }, { - "label": "'Microsoft.Network/routeFilters@2020-06-01'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000add", + "sortText": "00000ac5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeFilters@2020-06-01'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2018-10-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2015-05-01-preview'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2015-05-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b56", + "sortText": "00000ac4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2015-05-01-preview'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2018-11-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2015-06-15'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2015-06-15`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b55", + "sortText": "00000ac3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2015-06-15'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2018-12-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2016-03-30'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2016-03-30`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b54", + "sortText": "00000ac2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2016-03-30'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2019-02-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2016-06-01'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b53", + "sortText": "00000ac1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2016-06-01'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2019-04-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2016-09-01'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2016-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b52", + "sortText": "00000ac0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2016-09-01'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2019-06-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2016-12-01'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2016-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b51", + "sortText": "00000abf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2016-12-01'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2019-07-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2017-03-01'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2017-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b50", + "sortText": "00000abe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2017-03-01'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2019-08-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2017-06-01'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2017-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b4f", + "sortText": "00000abd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2017-06-01'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2019-09-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2017-08-01'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2017-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b4e", + "sortText": "00000abc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2017-08-01'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2019-11-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2017-09-01'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b4d", + "sortText": "00000abb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2017-09-01'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2019-12-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2017-10-01'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b4c", + "sortText": "00000aba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2017-10-01'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2020-03-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2017-11-01'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2017-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b4b", + "sortText": "00000ab9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2017-11-01'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2020-04-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2018-01-01'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2018-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b4a", + "sortText": "00000ab8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2018-01-01'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2020-05-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2018-02-01'", + "label": "'Microsoft.Network/routeFilters/routeFilterRules@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters/routeFilterRules` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b49", + "sortText": "00000ab7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2018-02-01'" + "newText": "'Microsoft.Network/routeFilters/routeFilterRules@2020-06-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2018-04-01'", + "label": "'Microsoft.Network/routeFilters@2016-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2016-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b48", + "sortText": "00000ab6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2018-04-01'" + "newText": "'Microsoft.Network/routeFilters@2016-12-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2018-06-01'", + "label": "'Microsoft.Network/routeFilters@2017-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2017-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b47", + "sortText": "00000ab5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2018-06-01'" + "newText": "'Microsoft.Network/routeFilters@2017-03-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2018-07-01'", + "label": "'Microsoft.Network/routeFilters@2017-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2017-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b46", + "sortText": "00000ab4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2018-07-01'" + "newText": "'Microsoft.Network/routeFilters@2017-06-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2018-08-01'", + "label": "'Microsoft.Network/routeFilters@2017-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2017-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b45", + "sortText": "00000ab3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2018-08-01'" + "newText": "'Microsoft.Network/routeFilters@2017-08-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2018-10-01'", + "label": "'Microsoft.Network/routeFilters@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b44", + "sortText": "00000ab2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2018-10-01'" + "newText": "'Microsoft.Network/routeFilters@2017-09-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2018-11-01'", + "label": "'Microsoft.Network/routeFilters@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b43", + "sortText": "00000ab1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2018-11-01'" + "newText": "'Microsoft.Network/routeFilters@2017-10-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2018-12-01'", + "label": "'Microsoft.Network/routeFilters@2017-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2017-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b42", + "sortText": "00000ab0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2018-12-01'" + "newText": "'Microsoft.Network/routeFilters@2017-11-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2019-02-01'", + "label": "'Microsoft.Network/routeFilters@2018-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2018-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b41", + "sortText": "00000aaf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2019-02-01'" + "newText": "'Microsoft.Network/routeFilters@2018-01-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2019-04-01'", + "label": "'Microsoft.Network/routeFilters@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b40", + "sortText": "00000aae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2019-04-01'" + "newText": "'Microsoft.Network/routeFilters@2018-02-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2019-06-01'", + "label": "'Microsoft.Network/routeFilters@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b3f", + "sortText": "00000aad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2019-06-01'" + "newText": "'Microsoft.Network/routeFilters@2018-04-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2019-07-01'", + "label": "'Microsoft.Network/routeFilters@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b3e", + "sortText": "00000aac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2019-07-01'" + "newText": "'Microsoft.Network/routeFilters@2018-06-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2019-08-01'", + "label": "'Microsoft.Network/routeFilters@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b3d", + "sortText": "00000aab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2019-08-01'" + "newText": "'Microsoft.Network/routeFilters@2018-07-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2019-09-01'", + "label": "'Microsoft.Network/routeFilters@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b3c", + "sortText": "00000aaa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2019-09-01'" + "newText": "'Microsoft.Network/routeFilters@2018-08-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2019-11-01'", + "label": "'Microsoft.Network/routeFilters@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b3b", + "sortText": "00000aa9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2019-11-01'" + "newText": "'Microsoft.Network/routeFilters@2018-10-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2019-12-01'", + "label": "'Microsoft.Network/routeFilters@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b3a", + "sortText": "00000aa8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2019-12-01'" + "newText": "'Microsoft.Network/routeFilters@2018-11-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2020-03-01'", + "label": "'Microsoft.Network/routeFilters@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b39", + "sortText": "00000aa7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2020-03-01'" + "newText": "'Microsoft.Network/routeFilters@2018-12-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2020-04-01'", + "label": "'Microsoft.Network/routeFilters@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b38", + "sortText": "00000aa6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2020-04-01'" + "newText": "'Microsoft.Network/routeFilters@2019-02-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2020-05-01'", + "label": "'Microsoft.Network/routeFilters@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b37", + "sortText": "00000aa5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2020-05-01'" + "newText": "'Microsoft.Network/routeFilters@2019-04-01'" } }, { - "label": "'Microsoft.Network/routeTables/routes@2020-06-01'", + "label": "'Microsoft.Network/routeFilters@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b36", + "sortText": "00000aa4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables/routes@2020-06-01'" + "newText": "'Microsoft.Network/routeFilters@2019-06-01'" } }, { - "label": "'Microsoft.Network/routeTables@2015-05-01-preview'", + "label": "'Microsoft.Network/routeFilters@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2015-05-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b35", + "sortText": "00000aa3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2015-05-01-preview'" + "newText": "'Microsoft.Network/routeFilters@2019-07-01'" } }, { - "label": "'Microsoft.Network/routeTables@2015-06-15'", + "label": "'Microsoft.Network/routeFilters@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2015-06-15`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b34", + "sortText": "00000aa2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2015-06-15'" + "newText": "'Microsoft.Network/routeFilters@2019-08-01'" } }, { - "label": "'Microsoft.Network/routeTables@2016-03-30'", + "label": "'Microsoft.Network/routeFilters@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2016-03-30`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b33", + "sortText": "00000aa1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2016-03-30'" + "newText": "'Microsoft.Network/routeFilters@2019-09-01'" } }, { - "label": "'Microsoft.Network/routeTables@2016-06-01'", + "label": "'Microsoft.Network/routeFilters@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b32", + "sortText": "00000aa0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2016-06-01'" + "newText": "'Microsoft.Network/routeFilters@2019-11-01'" } }, { - "label": "'Microsoft.Network/routeTables@2016-09-01'", + "label": "'Microsoft.Network/routeFilters@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2016-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b31", + "sortText": "00000a9f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2016-09-01'" + "newText": "'Microsoft.Network/routeFilters@2019-12-01'" } }, { - "label": "'Microsoft.Network/routeTables@2016-12-01'", + "label": "'Microsoft.Network/routeFilters@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2016-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b30", + "sortText": "00000a9e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2016-12-01'" + "newText": "'Microsoft.Network/routeFilters@2020-03-01'" } }, { - "label": "'Microsoft.Network/routeTables@2017-03-01'", + "label": "'Microsoft.Network/routeFilters@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2017-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b2f", + "sortText": "00000a9d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2017-03-01'" + "newText": "'Microsoft.Network/routeFilters@2020-04-01'" } }, { - "label": "'Microsoft.Network/routeTables@2017-06-01'", + "label": "'Microsoft.Network/routeFilters@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2017-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b2e", + "sortText": "00000a9c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2017-06-01'" + "newText": "'Microsoft.Network/routeFilters@2020-05-01'" } }, { - "label": "'Microsoft.Network/routeTables@2017-08-01'", + "label": "'Microsoft.Network/routeFilters@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2017-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeFilters` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b2d", + "sortText": "00000a9b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2017-08-01'" + "newText": "'Microsoft.Network/routeFilters@2020-06-01'" } }, { - "label": "'Microsoft.Network/routeTables@2017-09-01'", + "label": "'Microsoft.Network/routeTables/routes@2015-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2015-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000b2c", + "sortText": "00000b14", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2017-09-01'" + "newText": "'Microsoft.Network/routeTables/routes@2015-05-01-preview'" } }, { - "label": "'Microsoft.Network/routeTables@2017-10-01'", + "label": "'Microsoft.Network/routeTables/routes@2015-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2015-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000b2b", + "sortText": "00000b13", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2017-10-01'" + "newText": "'Microsoft.Network/routeTables/routes@2015-06-15'" } }, { - "label": "'Microsoft.Network/routeTables@2017-11-01'", + "label": "'Microsoft.Network/routeTables/routes@2016-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2017-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2016-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "00000b2a", + "sortText": "00000b12", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2017-11-01'" + "newText": "'Microsoft.Network/routeTables/routes@2016-03-30'" } }, { - "label": "'Microsoft.Network/routeTables@2018-01-01'", + "label": "'Microsoft.Network/routeTables/routes@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2018-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b29", + "sortText": "00000b11", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2018-01-01'" + "newText": "'Microsoft.Network/routeTables/routes@2016-06-01'" } }, { - "label": "'Microsoft.Network/routeTables@2018-02-01'", + "label": "'Microsoft.Network/routeTables/routes@2016-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2016-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b28", + "sortText": "00000b10", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2018-02-01'" + "newText": "'Microsoft.Network/routeTables/routes@2016-09-01'" } }, { - "label": "'Microsoft.Network/routeTables@2018-04-01'", + "label": "'Microsoft.Network/routeTables/routes@2016-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2016-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b27", + "sortText": "00000b0f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2018-04-01'" + "newText": "'Microsoft.Network/routeTables/routes@2016-12-01'" } }, { - "label": "'Microsoft.Network/routeTables@2018-06-01'", + "label": "'Microsoft.Network/routeTables/routes@2017-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2017-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b26", + "sortText": "00000b0e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2018-06-01'" + "newText": "'Microsoft.Network/routeTables/routes@2017-03-01'" } }, { - "label": "'Microsoft.Network/routeTables@2018-07-01'", + "label": "'Microsoft.Network/routeTables/routes@2017-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2017-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b25", + "sortText": "00000b0d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2018-07-01'" + "newText": "'Microsoft.Network/routeTables/routes@2017-06-01'" } }, { - "label": "'Microsoft.Network/routeTables@2018-08-01'", + "label": "'Microsoft.Network/routeTables/routes@2017-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2017-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b24", + "sortText": "00000b0c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2018-08-01'" + "newText": "'Microsoft.Network/routeTables/routes@2017-08-01'" } }, { - "label": "'Microsoft.Network/routeTables@2018-10-01'", + "label": "'Microsoft.Network/routeTables/routes@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b23", + "sortText": "00000b0b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2018-10-01'" + "newText": "'Microsoft.Network/routeTables/routes@2017-09-01'" } }, { - "label": "'Microsoft.Network/routeTables@2018-11-01'", + "label": "'Microsoft.Network/routeTables/routes@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b22", + "sortText": "00000b0a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2018-11-01'" + "newText": "'Microsoft.Network/routeTables/routes@2017-10-01'" } }, { - "label": "'Microsoft.Network/routeTables@2018-12-01'", + "label": "'Microsoft.Network/routeTables/routes@2017-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2017-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b21", + "sortText": "00000b09", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2018-12-01'" + "newText": "'Microsoft.Network/routeTables/routes@2017-11-01'" } }, { - "label": "'Microsoft.Network/routeTables@2019-02-01'", + "label": "'Microsoft.Network/routeTables/routes@2018-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2018-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b20", + "sortText": "00000b08", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2019-02-01'" + "newText": "'Microsoft.Network/routeTables/routes@2018-01-01'" } }, { - "label": "'Microsoft.Network/routeTables@2019-04-01'", + "label": "'Microsoft.Network/routeTables/routes@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b1f", + "sortText": "00000b07", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2019-04-01'" + "newText": "'Microsoft.Network/routeTables/routes@2018-02-01'" } }, { - "label": "'Microsoft.Network/routeTables@2019-06-01'", + "label": "'Microsoft.Network/routeTables/routes@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b1e", + "sortText": "00000b06", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2019-06-01'" + "newText": "'Microsoft.Network/routeTables/routes@2018-04-01'" } }, { - "label": "'Microsoft.Network/routeTables@2019-07-01'", + "label": "'Microsoft.Network/routeTables/routes@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b1d", + "sortText": "00000b05", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2019-07-01'" + "newText": "'Microsoft.Network/routeTables/routes@2018-06-01'" } }, { - "label": "'Microsoft.Network/routeTables@2019-08-01'", + "label": "'Microsoft.Network/routeTables/routes@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b1c", + "sortText": "00000b04", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2019-08-01'" + "newText": "'Microsoft.Network/routeTables/routes@2018-07-01'" } }, { - "label": "'Microsoft.Network/routeTables@2019-09-01'", + "label": "'Microsoft.Network/routeTables/routes@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b1b", + "sortText": "00000b03", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2019-09-01'" + "newText": "'Microsoft.Network/routeTables/routes@2018-08-01'" } }, { - "label": "'Microsoft.Network/routeTables@2019-11-01'", + "label": "'Microsoft.Network/routeTables/routes@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b1a", + "sortText": "00000b02", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2019-11-01'" + "newText": "'Microsoft.Network/routeTables/routes@2018-10-01'" } }, { - "label": "'Microsoft.Network/routeTables@2019-12-01'", + "label": "'Microsoft.Network/routeTables/routes@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b19", + "sortText": "00000b01", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2019-12-01'" + "newText": "'Microsoft.Network/routeTables/routes@2018-11-01'" } }, { - "label": "'Microsoft.Network/routeTables@2020-03-01'", + "label": "'Microsoft.Network/routeTables/routes@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b18", + "sortText": "00000b00", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2020-03-01'" + "newText": "'Microsoft.Network/routeTables/routes@2018-12-01'" } }, { - "label": "'Microsoft.Network/routeTables@2020-04-01'", + "label": "'Microsoft.Network/routeTables/routes@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b17", + "sortText": "00000aff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2020-04-01'" + "newText": "'Microsoft.Network/routeTables/routes@2019-02-01'" } }, { - "label": "'Microsoft.Network/routeTables@2020-05-01'", + "label": "'Microsoft.Network/routeTables/routes@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b16", + "sortText": "00000afe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2020-05-01'" + "newText": "'Microsoft.Network/routeTables/routes@2019-04-01'" } }, { - "label": "'Microsoft.Network/routeTables@2020-06-01'", + "label": "'Microsoft.Network/routeTables/routes@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b15", + "sortText": "00000afd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/routeTables@2020-06-01'" + "newText": "'Microsoft.Network/routeTables/routes@2019-06-01'" } }, { - "label": "'Microsoft.Network/securityPartnerProviders@2020-03-01'", + "label": "'Microsoft.Network/routeTables/routes@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `securityPartnerProviders` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b5a", + "sortText": "00000afc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/securityPartnerProviders@2020-03-01'" + "newText": "'Microsoft.Network/routeTables/routes@2019-07-01'" } }, { - "label": "'Microsoft.Network/securityPartnerProviders@2020-04-01'", + "label": "'Microsoft.Network/routeTables/routes@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `securityPartnerProviders` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b59", + "sortText": "00000afb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/securityPartnerProviders@2020-04-01'" + "newText": "'Microsoft.Network/routeTables/routes@2019-08-01'" } }, { - "label": "'Microsoft.Network/securityPartnerProviders@2020-05-01'", + "label": "'Microsoft.Network/routeTables/routes@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `securityPartnerProviders` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b58", + "sortText": "00000afa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/securityPartnerProviders@2020-05-01'" + "newText": "'Microsoft.Network/routeTables/routes@2019-09-01'" } }, { - "label": "'Microsoft.Network/securityPartnerProviders@2020-06-01'", + "label": "'Microsoft.Network/routeTables/routes@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `securityPartnerProviders` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b57", + "sortText": "00000af9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/securityPartnerProviders@2020-06-01'" + "newText": "'Microsoft.Network/routeTables/routes@2019-11-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2018-07-01'", + "label": "'Microsoft.Network/routeTables/routes@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b7c", + "sortText": "00000af8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2018-07-01'" + "newText": "'Microsoft.Network/routeTables/routes@2019-12-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2018-08-01'", + "label": "'Microsoft.Network/routeTables/routes@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b7b", + "sortText": "00000af7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2018-08-01'" + "newText": "'Microsoft.Network/routeTables/routes@2020-03-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2018-10-01'", + "label": "'Microsoft.Network/routeTables/routes@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b7a", + "sortText": "00000af6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2018-10-01'" + "newText": "'Microsoft.Network/routeTables/routes@2020-04-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2018-11-01'", + "label": "'Microsoft.Network/routeTables/routes@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b79", + "sortText": "00000af5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2018-11-01'" + "newText": "'Microsoft.Network/routeTables/routes@2020-05-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2018-12-01'", + "label": "'Microsoft.Network/routeTables/routes@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables/routes` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b78", + "sortText": "00000af4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2018-12-01'" + "newText": "'Microsoft.Network/routeTables/routes@2020-06-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-02-01'", + "label": "'Microsoft.Network/routeTables@2015-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2015-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000b77", + "sortText": "00000af3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-02-01'" + "newText": "'Microsoft.Network/routeTables@2015-05-01-preview'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-04-01'", + "label": "'Microsoft.Network/routeTables@2015-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2015-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000b76", + "sortText": "00000af2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-04-01'" + "newText": "'Microsoft.Network/routeTables@2015-06-15'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-06-01'", + "label": "'Microsoft.Network/routeTables@2016-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2016-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "00000b75", + "sortText": "00000af1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-06-01'" + "newText": "'Microsoft.Network/routeTables@2016-03-30'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-07-01'", + "label": "'Microsoft.Network/routeTables@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b74", + "sortText": "00000af0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-07-01'" + "newText": "'Microsoft.Network/routeTables@2016-06-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-08-01'", + "label": "'Microsoft.Network/routeTables@2016-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2016-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b73", + "sortText": "00000aef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-08-01'" + "newText": "'Microsoft.Network/routeTables@2016-09-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-09-01'", + "label": "'Microsoft.Network/routeTables@2016-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2016-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b72", + "sortText": "00000aee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-09-01'" + "newText": "'Microsoft.Network/routeTables@2016-12-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-11-01'", + "label": "'Microsoft.Network/routeTables@2017-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2017-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b71", + "sortText": "00000aed", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-11-01'" + "newText": "'Microsoft.Network/routeTables@2017-03-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-12-01'", + "label": "'Microsoft.Network/routeTables@2017-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2017-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b70", + "sortText": "00000aec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-12-01'" + "newText": "'Microsoft.Network/routeTables@2017-06-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2020-03-01'", + "label": "'Microsoft.Network/routeTables@2017-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2017-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b6f", + "sortText": "00000aeb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2020-03-01'" + "newText": "'Microsoft.Network/routeTables@2017-08-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2020-04-01'", + "label": "'Microsoft.Network/routeTables@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b6e", + "sortText": "00000aea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2020-04-01'" + "newText": "'Microsoft.Network/routeTables@2017-09-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2020-05-01'", + "label": "'Microsoft.Network/routeTables@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b6d", + "sortText": "00000ae9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2020-05-01'" + "newText": "'Microsoft.Network/routeTables@2017-10-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2020-06-01'", + "label": "'Microsoft.Network/routeTables@2017-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2017-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b6c", + "sortText": "00000ae8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2020-06-01'" + "newText": "'Microsoft.Network/routeTables@2017-11-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies@2018-07-01'", + "label": "'Microsoft.Network/routeTables@2018-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2018-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b6b", + "sortText": "00000ae7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies@2018-07-01'" + "newText": "'Microsoft.Network/routeTables@2018-01-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies@2018-08-01'", + "label": "'Microsoft.Network/routeTables@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b6a", + "sortText": "00000ae6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies@2018-08-01'" + "newText": "'Microsoft.Network/routeTables@2018-02-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies@2018-10-01'", + "label": "'Microsoft.Network/routeTables@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b69", + "sortText": "00000ae5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies@2018-10-01'" + "newText": "'Microsoft.Network/routeTables@2018-04-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies@2018-11-01'", + "label": "'Microsoft.Network/routeTables@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b68", + "sortText": "00000ae4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies@2018-11-01'" + "newText": "'Microsoft.Network/routeTables@2018-06-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies@2018-12-01'", + "label": "'Microsoft.Network/routeTables@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b67", + "sortText": "00000ae3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies@2018-12-01'" + "newText": "'Microsoft.Network/routeTables@2018-07-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies@2019-02-01'", + "label": "'Microsoft.Network/routeTables@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b66", + "sortText": "00000ae2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies@2019-02-01'" + "newText": "'Microsoft.Network/routeTables@2018-08-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies@2019-04-01'", + "label": "'Microsoft.Network/routeTables@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b65", + "sortText": "00000ae1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies@2019-04-01'" + "newText": "'Microsoft.Network/routeTables@2018-10-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies@2019-06-01'", + "label": "'Microsoft.Network/routeTables@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b64", + "sortText": "00000ae0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies@2019-06-01'" + "newText": "'Microsoft.Network/routeTables@2018-11-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies@2019-07-01'", + "label": "'Microsoft.Network/routeTables@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b63", + "sortText": "00000adf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies@2019-07-01'" + "newText": "'Microsoft.Network/routeTables@2018-12-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies@2019-08-01'", + "label": "'Microsoft.Network/routeTables@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b62", + "sortText": "00000ade", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies@2019-08-01'" + "newText": "'Microsoft.Network/routeTables@2019-02-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies@2019-09-01'", + "label": "'Microsoft.Network/routeTables@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b61", + "sortText": "00000add", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies@2019-09-01'" + "newText": "'Microsoft.Network/routeTables@2019-04-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies@2019-11-01'", + "label": "'Microsoft.Network/routeTables@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b60", + "sortText": "00000adc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies@2019-11-01'" + "newText": "'Microsoft.Network/routeTables@2019-06-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies@2019-12-01'", + "label": "'Microsoft.Network/routeTables@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b5f", + "sortText": "00000adb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies@2019-12-01'" + "newText": "'Microsoft.Network/routeTables@2019-07-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies@2020-03-01'", + "label": "'Microsoft.Network/routeTables@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b5e", + "sortText": "00000ada", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies@2020-03-01'" + "newText": "'Microsoft.Network/routeTables@2019-08-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies@2020-04-01'", + "label": "'Microsoft.Network/routeTables@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b5d", + "sortText": "00000ad9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies@2020-04-01'" + "newText": "'Microsoft.Network/routeTables@2019-09-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies@2020-05-01'", + "label": "'Microsoft.Network/routeTables@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b5c", + "sortText": "00000ad8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies@2020-05-01'" + "newText": "'Microsoft.Network/routeTables@2019-11-01'" } }, { - "label": "'Microsoft.Network/serviceEndpointPolicies@2020-06-01'", + "label": "'Microsoft.Network/routeTables@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b5b", + "sortText": "00000ad7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/serviceEndpointPolicies@2020-06-01'" + "newText": "'Microsoft.Network/routeTables@2019-12-01'" } }, { - "label": "'Microsoft.Network/trafficmanagerprofiles@2015-11-01'", + "label": "'Microsoft.Network/routeTables@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `trafficmanagerprofiles` \nAPI Version: `2015-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b82", + "sortText": "00000ad6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/trafficmanagerprofiles@2015-11-01'" + "newText": "'Microsoft.Network/routeTables@2020-03-01'" } }, { - "label": "'Microsoft.Network/trafficmanagerprofiles@2017-03-01'", + "label": "'Microsoft.Network/routeTables@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `trafficmanagerprofiles` \nAPI Version: `2017-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b81", + "sortText": "00000ad5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/trafficmanagerprofiles@2017-03-01'" + "newText": "'Microsoft.Network/routeTables@2020-04-01'" } }, { - "label": "'Microsoft.Network/trafficmanagerprofiles@2017-05-01'", + "label": "'Microsoft.Network/routeTables@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `trafficmanagerprofiles` \nAPI Version: `2017-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b80", + "sortText": "00000ad4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/trafficmanagerprofiles@2017-05-01'" + "newText": "'Microsoft.Network/routeTables@2020-05-01'" } }, { - "label": "'Microsoft.Network/trafficmanagerprofiles@2018-02-01'", + "label": "'Microsoft.Network/routeTables@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `trafficmanagerprofiles` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `routeTables` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b7f", + "sortText": "00000ad3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/trafficmanagerprofiles@2018-02-01'" + "newText": "'Microsoft.Network/routeTables@2020-06-01'" } }, { - "label": "'Microsoft.Network/trafficmanagerprofiles@2018-03-01'", + "label": "'Microsoft.Network/securityPartnerProviders@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `trafficmanagerprofiles` \nAPI Version: `2018-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `securityPartnerProviders` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b7e", + "sortText": "00000b18", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/trafficmanagerprofiles@2018-03-01'" + "newText": "'Microsoft.Network/securityPartnerProviders@2020-03-01'" } }, { - "label": "'Microsoft.Network/trafficmanagerprofiles@2018-04-01'", + "label": "'Microsoft.Network/securityPartnerProviders@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `trafficmanagerprofiles` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `securityPartnerProviders` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b7d", + "sortText": "00000b17", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/trafficmanagerprofiles@2018-04-01'" + "newText": "'Microsoft.Network/securityPartnerProviders@2020-04-01'" } }, { - "label": "'Microsoft.Network/virtualHubs/bgpConnections@2020-05-01'", + "label": "'Microsoft.Network/securityPartnerProviders@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/bgpConnections` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `securityPartnerProviders` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b97", + "sortText": "00000b16", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs/bgpConnections@2020-05-01'" + "newText": "'Microsoft.Network/securityPartnerProviders@2020-05-01'" } }, { - "label": "'Microsoft.Network/virtualHubs/bgpConnections@2020-06-01'", + "label": "'Microsoft.Network/securityPartnerProviders@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/bgpConnections` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `securityPartnerProviders` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b96", + "sortText": "00000b15", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs/bgpConnections@2020-06-01'" + "newText": "'Microsoft.Network/securityPartnerProviders@2020-06-01'" } }, { - "label": "'Microsoft.Network/virtualHubs/hubRouteTables@2020-04-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/hubRouteTables` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b9a", + "sortText": "00000b3a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs/hubRouteTables@2020-04-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2018-07-01'" } }, { - "label": "'Microsoft.Network/virtualHubs/hubRouteTables@2020-05-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/hubRouteTables` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b99", + "sortText": "00000b39", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs/hubRouteTables@2020-05-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2018-08-01'" } }, { - "label": "'Microsoft.Network/virtualHubs/hubRouteTables@2020-06-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/hubRouteTables` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b98", + "sortText": "00000b38", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs/hubRouteTables@2020-06-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2018-10-01'" } }, { - "label": "'Microsoft.Network/virtualHubs/hubVirtualNetworkConnections@2020-05-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/hubVirtualNetworkConnections` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b9c", + "sortText": "00000b37", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs/hubVirtualNetworkConnections@2020-05-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2018-11-01'" } }, { - "label": "'Microsoft.Network/virtualHubs/hubVirtualNetworkConnections@2020-06-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/hubVirtualNetworkConnections` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b9b", + "sortText": "00000b36", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs/hubVirtualNetworkConnections@2020-06-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2018-12-01'" } }, { - "label": "'Microsoft.Network/virtualHubs/ipConfigurations@2020-05-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/ipConfigurations` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b9e", + "sortText": "00000b35", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs/ipConfigurations@2020-05-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-02-01'" } }, { - "label": "'Microsoft.Network/virtualHubs/ipConfigurations@2020-06-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/ipConfigurations` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b9d", + "sortText": "00000b34", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs/ipConfigurations@2020-06-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-04-01'" } }, { - "label": "'Microsoft.Network/virtualHubs/routeTables@2019-09-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/routeTables` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ba5", + "sortText": "00000b33", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs/routeTables@2019-09-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-06-01'" } }, { - "label": "'Microsoft.Network/virtualHubs/routeTables@2019-11-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/routeTables` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ba4", + "sortText": "00000b32", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs/routeTables@2019-11-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-07-01'" } }, { - "label": "'Microsoft.Network/virtualHubs/routeTables@2019-12-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/routeTables` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ba3", + "sortText": "00000b31", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs/routeTables@2019-12-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-08-01'" } }, { - "label": "'Microsoft.Network/virtualHubs/routeTables@2020-03-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/routeTables` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ba2", + "sortText": "00000b30", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs/routeTables@2020-03-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-09-01'" } }, { - "label": "'Microsoft.Network/virtualHubs/routeTables@2020-04-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/routeTables` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ba1", + "sortText": "00000b2f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs/routeTables@2020-04-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-11-01'" } }, { - "label": "'Microsoft.Network/virtualHubs/routeTables@2020-05-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/routeTables` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ba0", + "sortText": "00000b2e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs/routeTables@2020-05-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2019-12-01'" } }, { - "label": "'Microsoft.Network/virtualHubs/routeTables@2020-06-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/routeTables` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b9f", + "sortText": "00000b2d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs/routeTables@2020-06-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2020-03-01'" } }, { - "label": "'Microsoft.Network/virtualHubs@2018-04-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b95", + "sortText": "00000b2c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs@2018-04-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2020-04-01'" } }, { - "label": "'Microsoft.Network/virtualHubs@2018-06-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b94", + "sortText": "00000b2b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs@2018-06-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2020-05-01'" } }, { - "label": "'Microsoft.Network/virtualHubs@2018-07-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies/serviceEndpointPolicyDefinitions` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b93", + "sortText": "00000b2a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs@2018-07-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies/serviceEndpointPolicyDefinitions@2020-06-01'" } }, { - "label": "'Microsoft.Network/virtualHubs@2018-08-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b92", + "sortText": "00000b29", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs@2018-08-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies@2018-07-01'" } }, { - "label": "'Microsoft.Network/virtualHubs@2018-10-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b91", + "sortText": "00000b28", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs@2018-10-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies@2018-08-01'" } }, { - "label": "'Microsoft.Network/virtualHubs@2018-11-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b90", + "sortText": "00000b27", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs@2018-11-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies@2018-10-01'" } }, { - "label": "'Microsoft.Network/virtualHubs@2018-12-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b8f", + "sortText": "00000b26", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs@2018-12-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies@2018-11-01'" } }, { - "label": "'Microsoft.Network/virtualHubs@2019-02-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b8e", + "sortText": "00000b25", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs@2019-02-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies@2018-12-01'" } }, { - "label": "'Microsoft.Network/virtualHubs@2019-04-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b8d", + "sortText": "00000b24", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs@2019-04-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies@2019-02-01'" } }, { - "label": "'Microsoft.Network/virtualHubs@2019-06-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b8c", + "sortText": "00000b23", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs@2019-06-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies@2019-04-01'" } }, { - "label": "'Microsoft.Network/virtualHubs@2019-07-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b8b", + "sortText": "00000b22", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs@2019-07-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies@2019-06-01'" } }, { - "label": "'Microsoft.Network/virtualHubs@2019-08-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b8a", + "sortText": "00000b21", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs@2019-08-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies@2019-07-01'" } }, { - "label": "'Microsoft.Network/virtualHubs@2019-09-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b89", + "sortText": "00000b20", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs@2019-09-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies@2019-08-01'" } }, { - "label": "'Microsoft.Network/virtualHubs@2019-11-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b88", + "sortText": "00000b1f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs@2019-11-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies@2019-09-01'" } }, { - "label": "'Microsoft.Network/virtualHubs@2019-12-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b87", + "sortText": "00000b1e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs@2019-12-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies@2019-11-01'" } }, { - "label": "'Microsoft.Network/virtualHubs@2020-03-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b86", + "sortText": "00000b1d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs@2020-03-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies@2019-12-01'" } }, { - "label": "'Microsoft.Network/virtualHubs@2020-04-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b85", + "sortText": "00000b1c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs@2020-04-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies@2020-03-01'" } }, { - "label": "'Microsoft.Network/virtualHubs@2020-05-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b84", + "sortText": "00000b1b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs@2020-05-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies@2020-04-01'" } }, { - "label": "'Microsoft.Network/virtualHubs@2020-06-01'", + "label": "'Microsoft.Network/serviceEndpointPolicies@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000b83", + "sortText": "00000b1a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualHubs@2020-06-01'" + "newText": "'Microsoft.Network/serviceEndpointPolicies@2020-05-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2015-06-15'", + "label": "'Microsoft.Network/serviceEndpointPolicies@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2015-06-15`" + "value": "Namespace: `Microsoft.Network` \nType: `serviceEndpointPolicies` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bc5", + "sortText": "00000b19", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2015-06-15'" + "newText": "'Microsoft.Network/serviceEndpointPolicies@2020-06-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2016-03-30'", + "label": "'Microsoft.Network/trafficmanagerprofiles@2015-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2016-03-30`" + "value": "Namespace: `Microsoft.Network` \nType: `trafficmanagerprofiles` \nAPI Version: `2015-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bc4", + "sortText": "00000b40", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2016-03-30'" + "newText": "'Microsoft.Network/trafficmanagerprofiles@2015-11-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2016-06-01'", + "label": "'Microsoft.Network/trafficmanagerprofiles@2017-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `trafficmanagerprofiles` \nAPI Version: `2017-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bc3", + "sortText": "00000b3f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2016-06-01'" + "newText": "'Microsoft.Network/trafficmanagerprofiles@2017-03-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2016-09-01'", + "label": "'Microsoft.Network/trafficmanagerprofiles@2017-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2016-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `trafficmanagerprofiles` \nAPI Version: `2017-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bc2", + "sortText": "00000b3e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2016-09-01'" + "newText": "'Microsoft.Network/trafficmanagerprofiles@2017-05-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2016-12-01'", + "label": "'Microsoft.Network/trafficmanagerprofiles@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2016-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `trafficmanagerprofiles` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bc1", + "sortText": "00000b3d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2016-12-01'" + "newText": "'Microsoft.Network/trafficmanagerprofiles@2018-02-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2017-03-01'", + "label": "'Microsoft.Network/trafficmanagerprofiles@2018-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2017-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `trafficmanagerprofiles` \nAPI Version: `2018-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bc0", + "sortText": "00000b3c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2017-03-01'" + "newText": "'Microsoft.Network/trafficmanagerprofiles@2018-03-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2017-06-01'", + "label": "'Microsoft.Network/trafficmanagerprofiles@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2017-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `trafficmanagerprofiles` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bbf", + "sortText": "00000b3b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2017-06-01'" + "newText": "'Microsoft.Network/trafficmanagerprofiles@2018-04-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2017-08-01'", + "label": "'Microsoft.Network/virtualHubs/bgpConnections@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2017-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/bgpConnections` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bbe", + "sortText": "00000b55", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2017-08-01'" + "newText": "'Microsoft.Network/virtualHubs/bgpConnections@2020-05-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2017-09-01'", + "label": "'Microsoft.Network/virtualHubs/bgpConnections@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/bgpConnections` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bbd", + "sortText": "00000b54", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2017-09-01'" + "newText": "'Microsoft.Network/virtualHubs/bgpConnections@2020-06-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2017-10-01'", + "label": "'Microsoft.Network/virtualHubs/hubRouteTables@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/hubRouteTables` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bbc", + "sortText": "00000b58", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2017-10-01'" + "newText": "'Microsoft.Network/virtualHubs/hubRouteTables@2020-04-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2017-11-01'", + "label": "'Microsoft.Network/virtualHubs/hubRouteTables@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2017-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/hubRouteTables` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bbb", + "sortText": "00000b57", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2017-11-01'" + "newText": "'Microsoft.Network/virtualHubs/hubRouteTables@2020-05-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2018-01-01'", + "label": "'Microsoft.Network/virtualHubs/hubRouteTables@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2018-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/hubRouteTables` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bba", + "sortText": "00000b56", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2018-01-01'" + "newText": "'Microsoft.Network/virtualHubs/hubRouteTables@2020-06-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2018-02-01'", + "label": "'Microsoft.Network/virtualHubs/hubVirtualNetworkConnections@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/hubVirtualNetworkConnections` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bb9", + "sortText": "00000b5a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2018-02-01'" + "newText": "'Microsoft.Network/virtualHubs/hubVirtualNetworkConnections@2020-05-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2018-04-01'", + "label": "'Microsoft.Network/virtualHubs/hubVirtualNetworkConnections@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/hubVirtualNetworkConnections` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bb8", + "sortText": "00000b59", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2018-04-01'" + "newText": "'Microsoft.Network/virtualHubs/hubVirtualNetworkConnections@2020-06-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2018-06-01'", + "label": "'Microsoft.Network/virtualHubs/ipConfigurations@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/ipConfigurations` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bb7", + "sortText": "00000b5c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2018-06-01'" + "newText": "'Microsoft.Network/virtualHubs/ipConfigurations@2020-05-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2018-07-01'", + "label": "'Microsoft.Network/virtualHubs/ipConfigurations@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/ipConfigurations` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bb6", + "sortText": "00000b5b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2018-07-01'" + "newText": "'Microsoft.Network/virtualHubs/ipConfigurations@2020-06-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2018-08-01'", + "label": "'Microsoft.Network/virtualHubs/routeTables@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/routeTables` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bb5", + "sortText": "00000b63", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2018-08-01'" + "newText": "'Microsoft.Network/virtualHubs/routeTables@2019-09-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2018-10-01'", + "label": "'Microsoft.Network/virtualHubs/routeTables@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/routeTables` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bb4", + "sortText": "00000b62", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2018-10-01'" + "newText": "'Microsoft.Network/virtualHubs/routeTables@2019-11-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2018-11-01'", + "label": "'Microsoft.Network/virtualHubs/routeTables@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/routeTables` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bb3", + "sortText": "00000b61", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2018-11-01'" + "newText": "'Microsoft.Network/virtualHubs/routeTables@2019-12-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2018-12-01'", + "label": "'Microsoft.Network/virtualHubs/routeTables@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/routeTables` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bb2", + "sortText": "00000b60", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2018-12-01'" + "newText": "'Microsoft.Network/virtualHubs/routeTables@2020-03-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2019-02-01'", + "label": "'Microsoft.Network/virtualHubs/routeTables@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/routeTables` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bb1", + "sortText": "00000b5f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2019-02-01'" + "newText": "'Microsoft.Network/virtualHubs/routeTables@2020-04-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2019-04-01'", + "label": "'Microsoft.Network/virtualHubs/routeTables@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/routeTables` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bb0", + "sortText": "00000b5e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2019-04-01'" + "newText": "'Microsoft.Network/virtualHubs/routeTables@2020-05-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2019-06-01'", + "label": "'Microsoft.Network/virtualHubs/routeTables@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs/routeTables` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000baf", + "sortText": "00000b5d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2019-06-01'" + "newText": "'Microsoft.Network/virtualHubs/routeTables@2020-06-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2019-07-01'", + "label": "'Microsoft.Network/virtualHubs@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bae", + "sortText": "00000b53", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2019-07-01'" + "newText": "'Microsoft.Network/virtualHubs@2018-04-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2019-08-01'", + "label": "'Microsoft.Network/virtualHubs@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bad", + "sortText": "00000b52", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2019-08-01'" + "newText": "'Microsoft.Network/virtualHubs@2018-06-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2019-09-01'", + "label": "'Microsoft.Network/virtualHubs@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bac", + "sortText": "00000b51", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2019-09-01'" + "newText": "'Microsoft.Network/virtualHubs@2018-07-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2019-11-01'", + "label": "'Microsoft.Network/virtualHubs@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bab", + "sortText": "00000b50", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2019-11-01'" + "newText": "'Microsoft.Network/virtualHubs@2018-08-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2019-12-01'", + "label": "'Microsoft.Network/virtualHubs@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000baa", + "sortText": "00000b4f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2019-12-01'" + "newText": "'Microsoft.Network/virtualHubs@2018-10-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2020-03-01'", + "label": "'Microsoft.Network/virtualHubs@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ba9", + "sortText": "00000b4e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2020-03-01'" + "newText": "'Microsoft.Network/virtualHubs@2018-11-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2020-04-01'", + "label": "'Microsoft.Network/virtualHubs@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ba8", + "sortText": "00000b4d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2020-04-01'" + "newText": "'Microsoft.Network/virtualHubs@2018-12-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2020-05-01'", + "label": "'Microsoft.Network/virtualHubs@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ba7", + "sortText": "00000b4c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2020-05-01'" + "newText": "'Microsoft.Network/virtualHubs@2019-02-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkGateways@2020-06-01'", + "label": "'Microsoft.Network/virtualHubs@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ba6", + "sortText": "00000b4b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkGateways@2020-06-01'" + "newText": "'Microsoft.Network/virtualHubs@2019-04-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkTaps@2018-08-01'", + "label": "'Microsoft.Network/virtualHubs@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c36", + "sortText": "00000b4a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkTaps@2018-08-01'" + "newText": "'Microsoft.Network/virtualHubs@2019-06-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkTaps@2018-10-01'", + "label": "'Microsoft.Network/virtualHubs@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c35", + "sortText": "00000b49", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkTaps@2018-10-01'" + "newText": "'Microsoft.Network/virtualHubs@2019-07-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkTaps@2018-11-01'", + "label": "'Microsoft.Network/virtualHubs@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c34", + "sortText": "00000b48", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkTaps@2018-11-01'" + "newText": "'Microsoft.Network/virtualHubs@2019-08-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkTaps@2018-12-01'", + "label": "'Microsoft.Network/virtualHubs@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c33", + "sortText": "00000b47", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkTaps@2018-12-01'" + "newText": "'Microsoft.Network/virtualHubs@2019-09-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkTaps@2019-02-01'", + "label": "'Microsoft.Network/virtualHubs@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c32", + "sortText": "00000b46", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkTaps@2019-02-01'" + "newText": "'Microsoft.Network/virtualHubs@2019-11-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkTaps@2019-04-01'", + "label": "'Microsoft.Network/virtualHubs@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c31", + "sortText": "00000b45", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkTaps@2019-04-01'" + "newText": "'Microsoft.Network/virtualHubs@2019-12-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkTaps@2019-06-01'", + "label": "'Microsoft.Network/virtualHubs@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c30", + "sortText": "00000b44", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkTaps@2019-06-01'" + "newText": "'Microsoft.Network/virtualHubs@2020-03-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkTaps@2019-07-01'", + "label": "'Microsoft.Network/virtualHubs@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c2f", + "sortText": "00000b43", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkTaps@2019-07-01'" + "newText": "'Microsoft.Network/virtualHubs@2020-04-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkTaps@2019-08-01'", + "label": "'Microsoft.Network/virtualHubs@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c2e", + "sortText": "00000b42", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkTaps@2019-08-01'" + "newText": "'Microsoft.Network/virtualHubs@2020-05-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkTaps@2019-09-01'", + "label": "'Microsoft.Network/virtualHubs@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualHubs` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c2d", + "sortText": "00000b41", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkTaps@2019-09-01'" + "newText": "'Microsoft.Network/virtualHubs@2020-06-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkTaps@2019-11-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2015-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2015-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000c2c", + "sortText": "00000b83", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkTaps@2019-11-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2015-06-15'" } }, { - "label": "'Microsoft.Network/virtualNetworkTaps@2019-12-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2016-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2016-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "00000c2b", + "sortText": "00000b82", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkTaps@2019-12-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2016-03-30'" } }, { - "label": "'Microsoft.Network/virtualNetworkTaps@2020-03-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c2a", + "sortText": "00000b81", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkTaps@2020-03-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2016-06-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkTaps@2020-04-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2016-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2016-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c29", + "sortText": "00000b80", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkTaps@2020-04-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2016-09-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkTaps@2020-05-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2016-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2016-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c28", + "sortText": "00000b7f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkTaps@2020-05-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2016-12-01'" } }, { - "label": "'Microsoft.Network/virtualNetworkTaps@2020-06-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2017-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2017-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c27", + "sortText": "00000b7e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworkTaps@2020-06-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2017-03-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2016-03-30'", + "label": "'Microsoft.Network/virtualNetworkGateways@2017-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2016-03-30`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2017-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c06", + "sortText": "00000b7d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2016-03-30'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2017-06-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2016-06-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2017-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2017-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c05", + "sortText": "00000b7c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2016-06-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2017-08-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2016-09-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2016-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c04", + "sortText": "00000b7b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2016-09-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2017-09-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2016-12-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2016-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c03", + "sortText": "00000b7a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2016-12-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2017-10-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2017-03-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2017-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2017-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2017-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c02", + "sortText": "00000b79", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2017-03-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2017-11-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2017-06-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2018-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2017-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2018-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c01", + "sortText": "00000b78", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2017-06-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2018-01-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2017-08-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2017-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c00", + "sortText": "00000b77", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2017-08-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2018-02-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2017-09-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bff", + "sortText": "00000b76", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2017-09-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2018-04-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2017-10-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bfe", + "sortText": "00000b75", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2017-10-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2018-06-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2017-11-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2017-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bfd", + "sortText": "00000b74", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2017-11-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2018-07-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2018-01-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2018-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bfc", + "sortText": "00000b73", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2018-01-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2018-08-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2018-02-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bfb", + "sortText": "00000b72", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2018-02-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2018-10-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2018-04-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bfa", + "sortText": "00000b71", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2018-04-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2018-11-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2018-06-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bf9", + "sortText": "00000b70", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2018-06-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2018-12-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2018-07-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bf8", + "sortText": "00000b6f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2018-07-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2019-02-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2018-08-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bf7", + "sortText": "00000b6e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2018-08-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2019-04-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2018-10-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bf6", + "sortText": "00000b6d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2018-10-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2019-06-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2018-11-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bf5", + "sortText": "00000b6c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2018-11-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2019-07-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2018-12-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bf4", + "sortText": "00000b6b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2018-12-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2019-08-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2019-02-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bf3", + "sortText": "00000b6a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2019-02-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2019-09-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2019-04-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bf2", + "sortText": "00000b69", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2019-04-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2019-11-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2019-06-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bf1", + "sortText": "00000b68", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2019-06-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2019-12-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2019-07-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bf0", + "sortText": "00000b67", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2019-07-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2020-03-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2019-08-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bef", + "sortText": "00000b66", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2019-08-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2020-04-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2019-09-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bee", + "sortText": "00000b65", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2019-09-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2020-05-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2019-11-01'", + "label": "'Microsoft.Network/virtualNetworkGateways@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkGateways` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bed", + "sortText": "00000b64", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2019-11-01'" + "newText": "'Microsoft.Network/virtualNetworkGateways@2020-06-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2019-12-01'", + "label": "'Microsoft.Network/virtualNetworkTaps@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bec", + "sortText": "00000bf4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2019-12-01'" + "newText": "'Microsoft.Network/virtualNetworkTaps@2018-08-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2020-03-01'", + "label": "'Microsoft.Network/virtualNetworkTaps@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000beb", + "sortText": "00000bf3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2020-03-01'" + "newText": "'Microsoft.Network/virtualNetworkTaps@2018-10-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2020-04-01'", + "label": "'Microsoft.Network/virtualNetworkTaps@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bea", + "sortText": "00000bf2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2020-04-01'" + "newText": "'Microsoft.Network/virtualNetworkTaps@2018-11-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2020-05-01'", + "label": "'Microsoft.Network/virtualNetworkTaps@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000be9", + "sortText": "00000bf1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2020-05-01'" + "newText": "'Microsoft.Network/virtualNetworkTaps@2018-12-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/subnets@2020-06-01'", + "label": "'Microsoft.Network/virtualNetworkTaps@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000be8", + "sortText": "00000bf0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/subnets@2020-06-01'" + "newText": "'Microsoft.Network/virtualNetworkTaps@2019-02-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2016-06-01'", + "label": "'Microsoft.Network/virtualNetworkTaps@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c26", + "sortText": "00000bef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2016-06-01'" + "newText": "'Microsoft.Network/virtualNetworkTaps@2019-04-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2016-09-01'", + "label": "'Microsoft.Network/virtualNetworkTaps@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2016-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c25", + "sortText": "00000bee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2016-09-01'" + "newText": "'Microsoft.Network/virtualNetworkTaps@2019-06-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2016-12-01'", + "label": "'Microsoft.Network/virtualNetworkTaps@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2016-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c24", + "sortText": "00000bed", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2016-12-01'" + "newText": "'Microsoft.Network/virtualNetworkTaps@2019-07-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2017-03-01'", + "label": "'Microsoft.Network/virtualNetworkTaps@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2017-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c23", + "sortText": "00000bec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2017-03-01'" + "newText": "'Microsoft.Network/virtualNetworkTaps@2019-08-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2017-06-01'", + "label": "'Microsoft.Network/virtualNetworkTaps@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2017-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c22", + "sortText": "00000beb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2017-06-01'" + "newText": "'Microsoft.Network/virtualNetworkTaps@2019-09-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2017-08-01'", + "label": "'Microsoft.Network/virtualNetworkTaps@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2017-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c21", + "sortText": "00000bea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2017-08-01'" + "newText": "'Microsoft.Network/virtualNetworkTaps@2019-11-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2017-09-01'", + "label": "'Microsoft.Network/virtualNetworkTaps@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c20", + "sortText": "00000be9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2017-09-01'" + "newText": "'Microsoft.Network/virtualNetworkTaps@2019-12-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2017-10-01'", + "label": "'Microsoft.Network/virtualNetworkTaps@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c1f", + "sortText": "00000be8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2017-10-01'" + "newText": "'Microsoft.Network/virtualNetworkTaps@2020-03-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2017-11-01'", + "label": "'Microsoft.Network/virtualNetworkTaps@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2017-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c1e", + "sortText": "00000be7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2017-11-01'" + "newText": "'Microsoft.Network/virtualNetworkTaps@2020-04-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-01-01'", + "label": "'Microsoft.Network/virtualNetworkTaps@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2018-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c1d", + "sortText": "00000be6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-01-01'" + "newText": "'Microsoft.Network/virtualNetworkTaps@2020-05-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-02-01'", + "label": "'Microsoft.Network/virtualNetworkTaps@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworkTaps` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c1c", + "sortText": "00000be5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-02-01'" + "newText": "'Microsoft.Network/virtualNetworkTaps@2020-06-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-04-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2016-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2016-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "00000c1b", + "sortText": "00000bc4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-04-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2016-03-30'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-06-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c1a", + "sortText": "00000bc3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-06-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2016-06-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-07-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2016-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2016-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c19", + "sortText": "00000bc2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-07-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2016-09-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-08-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2016-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2016-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c18", + "sortText": "00000bc1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-08-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2016-12-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-10-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2017-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2017-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c17", + "sortText": "00000bc0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-10-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2017-03-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-11-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2017-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2017-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c16", + "sortText": "00000bbf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-11-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2017-06-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-12-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2017-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2017-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c15", + "sortText": "00000bbe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-12-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2017-08-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-02-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c14", + "sortText": "00000bbd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-02-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2017-09-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-04-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c13", + "sortText": "00000bbc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-04-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2017-10-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-06-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2017-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2017-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c12", + "sortText": "00000bbb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-06-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2017-11-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-07-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2018-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2018-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c11", + "sortText": "00000bba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-07-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2018-01-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-08-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c10", + "sortText": "00000bb9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-08-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2018-02-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-09-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c0f", + "sortText": "00000bb8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-09-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2018-04-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-11-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c0e", + "sortText": "00000bb7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-11-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2018-06-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-12-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c0d", + "sortText": "00000bb6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-12-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2018-07-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2020-03-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c0c", + "sortText": "00000bb5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2020-03-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2018-08-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2020-04-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c0b", + "sortText": "00000bb4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2020-04-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2018-10-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2020-05-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c0a", + "sortText": "00000bb3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2020-05-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2018-11-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2020-06-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c09", + "sortText": "00000bb2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2020-06-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2018-12-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2015-06-15'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2015-06-15`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000be6", + "sortText": "00000bb1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2015-06-15'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2019-02-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2016-03-30'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2016-03-30`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000be5", + "sortText": "00000bb0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2016-03-30'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2019-04-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2016-06-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000be4", + "sortText": "00000baf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2016-06-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2019-06-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2016-09-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2016-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000be3", + "sortText": "00000bae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2016-09-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2019-07-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2016-12-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2016-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000be2", + "sortText": "00000bad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2016-12-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2019-08-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2017-03-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2017-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000be1", + "sortText": "00000bac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2017-03-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2019-09-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2017-06-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2017-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000be0", + "sortText": "00000bab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2017-06-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2019-11-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2017-08-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2017-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bdf", + "sortText": "00000baa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2017-08-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2019-12-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2017-09-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2017-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bde", + "sortText": "00000ba9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2017-09-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2020-03-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2017-10-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bdd", + "sortText": "00000ba8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2017-10-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2020-04-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2017-11-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2017-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bdc", + "sortText": "00000ba7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2017-11-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2020-05-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2018-01-01'", + "label": "'Microsoft.Network/virtualNetworks/subnets@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2018-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/subnets` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bdb", + "sortText": "00000ba6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2018-01-01'" + "newText": "'Microsoft.Network/virtualNetworks/subnets@2020-06-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2018-02-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bda", + "sortText": "00000be4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2018-02-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2016-06-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2018-04-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2016-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2016-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bd9", + "sortText": "00000be3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2018-04-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2016-09-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2018-06-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2016-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2016-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bd8", + "sortText": "00000be2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2018-06-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2016-12-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2018-07-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2017-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2017-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bd7", + "sortText": "00000be1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2018-07-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2017-03-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2018-08-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2017-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2017-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bd6", + "sortText": "00000be0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2018-08-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2017-06-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2018-10-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2017-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2017-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bd5", + "sortText": "00000bdf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2018-10-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2017-08-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2018-11-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bd4", + "sortText": "00000bde", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2018-11-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2017-09-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2018-12-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bd3", + "sortText": "00000bdd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2018-12-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2017-10-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2019-02-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2017-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2017-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bd2", + "sortText": "00000bdc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2019-02-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2017-11-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2019-04-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2018-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bd1", + "sortText": "00000bdb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2019-04-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-01-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2019-06-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bd0", + "sortText": "00000bda", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2019-06-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-02-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2019-07-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bcf", + "sortText": "00000bd9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2019-07-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-04-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2019-08-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bce", + "sortText": "00000bd8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2019-08-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-06-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2019-09-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bcd", + "sortText": "00000bd7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2019-09-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-07-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2019-11-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bcc", + "sortText": "00000bd6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2019-11-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-08-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2019-12-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bcb", + "sortText": "00000bd5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2019-12-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-10-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2020-03-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bca", + "sortText": "00000bd4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2020-03-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-11-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2020-04-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bc9", + "sortText": "00000bd3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2020-04-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2018-12-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2020-05-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bc8", + "sortText": "00000bd2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2020-05-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-02-01'" } }, { - "label": "'Microsoft.Network/virtualNetworks@2020-06-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bc7", + "sortText": "00000bd1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualNetworks@2020-06-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-04-01'" } }, { - "label": "'Microsoft.Network/virtualRouters/peerings@2019-07-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters/peerings` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c48", + "sortText": "00000bd0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualRouters/peerings@2019-07-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-06-01'" } }, { - "label": "'Microsoft.Network/virtualRouters/peerings@2019-08-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters/peerings` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c47", + "sortText": "00000bcf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualRouters/peerings@2019-08-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-07-01'" } }, { - "label": "'Microsoft.Network/virtualRouters/peerings@2019-09-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters/peerings` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c46", + "sortText": "00000bce", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualRouters/peerings@2019-09-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-08-01'" } }, { - "label": "'Microsoft.Network/virtualRouters/peerings@2019-11-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters/peerings` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c45", + "sortText": "00000bcd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualRouters/peerings@2019-11-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-09-01'" } }, { - "label": "'Microsoft.Network/virtualRouters/peerings@2019-12-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters/peerings` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c44", + "sortText": "00000bcc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualRouters/peerings@2019-12-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-11-01'" } }, { - "label": "'Microsoft.Network/virtualRouters/peerings@2020-03-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters/peerings` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c43", + "sortText": "00000bcb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualRouters/peerings@2020-03-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2019-12-01'" } }, { - "label": "'Microsoft.Network/virtualRouters/peerings@2020-04-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters/peerings` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c42", + "sortText": "00000bca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualRouters/peerings@2020-04-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2020-03-01'" } }, { - "label": "'Microsoft.Network/virtualRouters/peerings@2020-05-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters/peerings` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c41", + "sortText": "00000bc9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualRouters/peerings@2020-05-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2020-04-01'" } }, { - "label": "'Microsoft.Network/virtualRouters/peerings@2020-06-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters/peerings` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c40", + "sortText": "00000bc8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualRouters/peerings@2020-06-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2020-05-01'" } }, { - "label": "'Microsoft.Network/virtualRouters@2019-07-01'", + "label": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks/virtualNetworkPeerings` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c3f", + "sortText": "00000bc7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualRouters@2019-07-01'" + "newText": "'Microsoft.Network/virtualNetworks/virtualNetworkPeerings@2020-06-01'" } }, { - "label": "'Microsoft.Network/virtualRouters@2019-08-01'", + "label": "'Microsoft.Network/virtualNetworks@2015-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2015-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000c3e", + "sortText": "00000ba4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualRouters@2019-08-01'" + "newText": "'Microsoft.Network/virtualNetworks@2015-06-15'" } }, { - "label": "'Microsoft.Network/virtualRouters@2019-09-01'", + "label": "'Microsoft.Network/virtualNetworks@2016-03-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2016-03-30`" }, "deprecated": false, "preselect": false, - "sortText": "00000c3d", + "sortText": "00000ba3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualRouters@2019-09-01'" + "newText": "'Microsoft.Network/virtualNetworks@2016-03-30'" } }, { - "label": "'Microsoft.Network/virtualRouters@2019-11-01'", + "label": "'Microsoft.Network/virtualNetworks@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c3c", + "sortText": "00000ba2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualRouters@2019-11-01'" + "newText": "'Microsoft.Network/virtualNetworks@2016-06-01'" } }, { - "label": "'Microsoft.Network/virtualRouters@2019-12-01'", + "label": "'Microsoft.Network/virtualNetworks@2016-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2016-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c3b", + "sortText": "00000ba1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualRouters@2019-12-01'" + "newText": "'Microsoft.Network/virtualNetworks@2016-09-01'" } }, { - "label": "'Microsoft.Network/virtualRouters@2020-03-01'", + "label": "'Microsoft.Network/virtualNetworks@2016-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2016-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c3a", + "sortText": "00000ba0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualRouters@2020-03-01'" + "newText": "'Microsoft.Network/virtualNetworks@2016-12-01'" } }, { - "label": "'Microsoft.Network/virtualRouters@2020-04-01'", + "label": "'Microsoft.Network/virtualNetworks@2017-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2017-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c39", + "sortText": "00000b9f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualRouters@2020-04-01'" + "newText": "'Microsoft.Network/virtualNetworks@2017-03-01'" } }, { - "label": "'Microsoft.Network/virtualRouters@2020-05-01'", + "label": "'Microsoft.Network/virtualNetworks@2017-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2017-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c38", + "sortText": "00000b9e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualRouters@2020-05-01'" + "newText": "'Microsoft.Network/virtualNetworks@2017-06-01'" } }, { - "label": "'Microsoft.Network/virtualRouters@2020-06-01'", + "label": "'Microsoft.Network/virtualNetworks@2017-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2017-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c37", + "sortText": "00000b9d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualRouters@2020-06-01'" + "newText": "'Microsoft.Network/virtualNetworks@2017-08-01'" } }, { - "label": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2018-08-01'", + "label": "'Microsoft.Network/virtualNetworks@2017-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualWans/p2sVpnServerConfigurations` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2017-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c63", + "sortText": "00000b9c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2018-08-01'" + "newText": "'Microsoft.Network/virtualNetworks@2017-09-01'" } }, { - "label": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2018-10-01'", + "label": "'Microsoft.Network/virtualNetworks@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualWans/p2sVpnServerConfigurations` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c62", + "sortText": "00000b9b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2018-10-01'" + "newText": "'Microsoft.Network/virtualNetworks@2017-10-01'" } }, { - "label": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2018-11-01'", + "label": "'Microsoft.Network/virtualNetworks@2017-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualWans/p2sVpnServerConfigurations` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2017-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c61", + "sortText": "00000b9a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2018-11-01'" + "newText": "'Microsoft.Network/virtualNetworks@2017-11-01'" } }, { - "label": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2018-12-01'", + "label": "'Microsoft.Network/virtualNetworks@2018-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualWans/p2sVpnServerConfigurations` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2018-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c60", + "sortText": "00000b99", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2018-12-01'" + "newText": "'Microsoft.Network/virtualNetworks@2018-01-01'" } }, { - "label": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2019-02-01'", + "label": "'Microsoft.Network/virtualNetworks@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualWans/p2sVpnServerConfigurations` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c5f", + "sortText": "00000b98", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2019-02-01'" + "newText": "'Microsoft.Network/virtualNetworks@2018-02-01'" } }, { - "label": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2019-04-01'", + "label": "'Microsoft.Network/virtualNetworks@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualWans/p2sVpnServerConfigurations` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c5e", + "sortText": "00000b97", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2019-04-01'" + "newText": "'Microsoft.Network/virtualNetworks@2018-04-01'" } }, { - "label": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2019-06-01'", + "label": "'Microsoft.Network/virtualNetworks@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualWans/p2sVpnServerConfigurations` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c5d", + "sortText": "00000b96", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2019-06-01'" + "newText": "'Microsoft.Network/virtualNetworks@2018-06-01'" } }, { - "label": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2019-07-01'", + "label": "'Microsoft.Network/virtualNetworks@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualWans/p2sVpnServerConfigurations` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c5c", + "sortText": "00000b95", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2019-07-01'" + "newText": "'Microsoft.Network/virtualNetworks@2018-07-01'" } }, { - "label": "'Microsoft.Network/virtualWans@2018-04-01'", + "label": "'Microsoft.Network/virtualNetworks@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c5b", + "sortText": "00000b94", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualWans@2018-04-01'" + "newText": "'Microsoft.Network/virtualNetworks@2018-08-01'" } }, { - "label": "'Microsoft.Network/virtualWans@2018-06-01'", + "label": "'Microsoft.Network/virtualNetworks@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c5a", + "sortText": "00000b93", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualWans@2018-06-01'" + "newText": "'Microsoft.Network/virtualNetworks@2018-10-01'" } }, { - "label": "'Microsoft.Network/virtualWans@2018-07-01'", + "label": "'Microsoft.Network/virtualNetworks@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c59", + "sortText": "00000b92", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualWans@2018-07-01'" + "newText": "'Microsoft.Network/virtualNetworks@2018-11-01'" } }, { - "label": "'Microsoft.Network/virtualWans@2018-08-01'", + "label": "'Microsoft.Network/virtualNetworks@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c58", + "sortText": "00000b91", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualWans@2018-08-01'" + "newText": "'Microsoft.Network/virtualNetworks@2018-12-01'" } }, { - "label": "'Microsoft.Network/virtualWans@2018-10-01'", + "label": "'Microsoft.Network/virtualNetworks@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c57", + "sortText": "00000b90", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualWans@2018-10-01'" + "newText": "'Microsoft.Network/virtualNetworks@2019-02-01'" } }, { - "label": "'Microsoft.Network/virtualWans@2018-11-01'", + "label": "'Microsoft.Network/virtualNetworks@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c56", + "sortText": "00000b8f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualWans@2018-11-01'" + "newText": "'Microsoft.Network/virtualNetworks@2019-04-01'" } }, { - "label": "'Microsoft.Network/virtualWans@2018-12-01'", + "label": "'Microsoft.Network/virtualNetworks@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c55", + "sortText": "00000b8e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualWans@2018-12-01'" + "newText": "'Microsoft.Network/virtualNetworks@2019-06-01'" } }, { - "label": "'Microsoft.Network/virtualWans@2019-02-01'", + "label": "'Microsoft.Network/virtualNetworks@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c54", + "sortText": "00000b8d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualWans@2019-02-01'" + "newText": "'Microsoft.Network/virtualNetworks@2019-07-01'" } }, { - "label": "'Microsoft.Network/virtualWans@2019-04-01'", + "label": "'Microsoft.Network/virtualNetworks@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c53", + "sortText": "00000b8c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualWans@2019-04-01'" + "newText": "'Microsoft.Network/virtualNetworks@2019-08-01'" } }, { - "label": "'Microsoft.Network/virtualWans@2019-06-01'", + "label": "'Microsoft.Network/virtualNetworks@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c52", + "sortText": "00000b8b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualWans@2019-06-01'" + "newText": "'Microsoft.Network/virtualNetworks@2019-09-01'" } }, { - "label": "'Microsoft.Network/virtualWans@2019-07-01'", + "label": "'Microsoft.Network/virtualNetworks@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c51", + "sortText": "00000b8a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualWans@2019-07-01'" + "newText": "'Microsoft.Network/virtualNetworks@2019-11-01'" } }, { - "label": "'Microsoft.Network/virtualWans@2019-08-01'", + "label": "'Microsoft.Network/virtualNetworks@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c50", + "sortText": "00000b89", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualWans@2019-08-01'" + "newText": "'Microsoft.Network/virtualNetworks@2019-12-01'" } }, { - "label": "'Microsoft.Network/virtualWans@2019-09-01'", + "label": "'Microsoft.Network/virtualNetworks@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c4f", + "sortText": "00000b88", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualWans@2019-09-01'" + "newText": "'Microsoft.Network/virtualNetworks@2020-03-01'" } }, { - "label": "'Microsoft.Network/virtualWans@2019-11-01'", + "label": "'Microsoft.Network/virtualNetworks@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c4e", + "sortText": "00000b87", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualWans@2019-11-01'" + "newText": "'Microsoft.Network/virtualNetworks@2020-04-01'" } }, { - "label": "'Microsoft.Network/virtualWans@2019-12-01'", + "label": "'Microsoft.Network/virtualNetworks@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c4d", + "sortText": "00000b86", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualWans@2019-12-01'" + "newText": "'Microsoft.Network/virtualNetworks@2020-05-01'" } }, { - "label": "'Microsoft.Network/virtualWans@2020-03-01'", + "label": "'Microsoft.Network/virtualNetworks@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualNetworks` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c4c", + "sortText": "00000b85", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualWans@2020-03-01'" + "newText": "'Microsoft.Network/virtualNetworks@2020-06-01'" } }, { - "label": "'Microsoft.Network/virtualWans@2020-04-01'", + "label": "'Microsoft.Network/virtualRouters/peerings@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters/peerings` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c4b", + "sortText": "00000c06", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualWans@2020-04-01'" + "newText": "'Microsoft.Network/virtualRouters/peerings@2019-07-01'" } }, { - "label": "'Microsoft.Network/virtualWans@2020-05-01'", + "label": "'Microsoft.Network/virtualRouters/peerings@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters/peerings` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c4a", + "sortText": "00000c05", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualWans@2020-05-01'" + "newText": "'Microsoft.Network/virtualRouters/peerings@2019-08-01'" } }, { - "label": "'Microsoft.Network/virtualWans@2020-06-01'", + "label": "'Microsoft.Network/virtualRouters/peerings@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters/peerings` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c49", + "sortText": "00000c04", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualWans@2020-06-01'" + "newText": "'Microsoft.Network/virtualRouters/peerings@2019-09-01'" } }, { - "label": "'Microsoft.Network/virtualnetworkgateways@2015-05-01-preview'", + "label": "'Microsoft.Network/virtualRouters/peerings@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualnetworkgateways` \nAPI Version: `2015-05-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters/peerings` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000bc6", + "sortText": "00000c03", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualnetworkgateways@2015-05-01-preview'" + "newText": "'Microsoft.Network/virtualRouters/peerings@2019-11-01'" } }, { - "label": "'Microsoft.Network/virtualnetworks/subnets@2015-05-01-preview'", + "label": "'Microsoft.Network/virtualRouters/peerings@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualnetworks/subnets` \nAPI Version: `2015-05-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters/peerings` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c08", + "sortText": "00000c02", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualnetworks/subnets@2015-05-01-preview'" + "newText": "'Microsoft.Network/virtualRouters/peerings@2019-12-01'" } }, { - "label": "'Microsoft.Network/virtualnetworks/subnets@2015-06-15'", + "label": "'Microsoft.Network/virtualRouters/peerings@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualnetworks/subnets` \nAPI Version: `2015-06-15`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters/peerings` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c07", + "sortText": "00000c01", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualnetworks/subnets@2015-06-15'" + "newText": "'Microsoft.Network/virtualRouters/peerings@2020-03-01'" } }, { - "label": "'Microsoft.Network/virtualnetworks@2015-05-01-preview'", + "label": "'Microsoft.Network/virtualRouters/peerings@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `virtualnetworks` \nAPI Version: `2015-05-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters/peerings` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000be7", + "sortText": "00000c00", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/virtualnetworks@2015-05-01-preview'" + "newText": "'Microsoft.Network/virtualRouters/peerings@2020-04-01'" } }, { - "label": "'Microsoft.Network/vpnGateways/vpnConnections@2018-04-01'", + "label": "'Microsoft.Network/virtualRouters/peerings@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters/peerings` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c89", + "sortText": "00000bff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2018-04-01'" + "newText": "'Microsoft.Network/virtualRouters/peerings@2020-05-01'" } }, { - "label": "'Microsoft.Network/vpnGateways/vpnConnections@2018-06-01'", + "label": "'Microsoft.Network/virtualRouters/peerings@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters/peerings` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c88", + "sortText": "00000bfe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2018-06-01'" + "newText": "'Microsoft.Network/virtualRouters/peerings@2020-06-01'" } }, { - "label": "'Microsoft.Network/vpnGateways/vpnConnections@2018-07-01'", + "label": "'Microsoft.Network/virtualRouters@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c87", + "sortText": "00000bfd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2018-07-01'" + "newText": "'Microsoft.Network/virtualRouters@2019-07-01'" } }, { - "label": "'Microsoft.Network/vpnGateways/vpnConnections@2018-08-01'", + "label": "'Microsoft.Network/virtualRouters@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c86", + "sortText": "00000bfc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2018-08-01'" + "newText": "'Microsoft.Network/virtualRouters@2019-08-01'" } }, { - "label": "'Microsoft.Network/vpnGateways/vpnConnections@2018-10-01'", + "label": "'Microsoft.Network/virtualRouters@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c85", + "sortText": "00000bfb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2018-10-01'" + "newText": "'Microsoft.Network/virtualRouters@2019-09-01'" } }, { - "label": "'Microsoft.Network/vpnGateways/vpnConnections@2018-11-01'", + "label": "'Microsoft.Network/virtualRouters@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c84", + "sortText": "00000bfa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2018-11-01'" + "newText": "'Microsoft.Network/virtualRouters@2019-11-01'" } }, { - "label": "'Microsoft.Network/vpnGateways/vpnConnections@2018-12-01'", + "label": "'Microsoft.Network/virtualRouters@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c83", + "sortText": "00000bf9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2018-12-01'" + "newText": "'Microsoft.Network/virtualRouters@2019-12-01'" } }, { - "label": "'Microsoft.Network/vpnGateways/vpnConnections@2019-02-01'", + "label": "'Microsoft.Network/virtualRouters@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c82", + "sortText": "00000bf8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2019-02-01'" + "newText": "'Microsoft.Network/virtualRouters@2020-03-01'" } }, { - "label": "'Microsoft.Network/vpnGateways/vpnConnections@2019-04-01'", + "label": "'Microsoft.Network/virtualRouters@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c81", + "sortText": "00000bf7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2019-04-01'" + "newText": "'Microsoft.Network/virtualRouters@2020-04-01'" } }, { - "label": "'Microsoft.Network/vpnGateways/vpnConnections@2019-06-01'", + "label": "'Microsoft.Network/virtualRouters@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c80", + "sortText": "00000bf6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2019-06-01'" + "newText": "'Microsoft.Network/virtualRouters@2020-05-01'" } }, { - "label": "'Microsoft.Network/vpnGateways/vpnConnections@2019-07-01'", + "label": "'Microsoft.Network/virtualRouters@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualRouters` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c7f", + "sortText": "00000bf5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2019-07-01'" + "newText": "'Microsoft.Network/virtualRouters@2020-06-01'" } }, { - "label": "'Microsoft.Network/vpnGateways/vpnConnections@2019-08-01'", + "label": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualWans/p2sVpnServerConfigurations` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c7e", + "sortText": "00000c21", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2019-08-01'" + "newText": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2018-08-01'" } }, { - "label": "'Microsoft.Network/vpnGateways/vpnConnections@2019-09-01'", + "label": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualWans/p2sVpnServerConfigurations` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c7d", + "sortText": "00000c20", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2019-09-01'" + "newText": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2018-10-01'" } }, { - "label": "'Microsoft.Network/vpnGateways/vpnConnections@2019-11-01'", + "label": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualWans/p2sVpnServerConfigurations` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c7c", + "sortText": "00000c1f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2019-11-01'" + "newText": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2018-11-01'" } }, { - "label": "'Microsoft.Network/vpnGateways/vpnConnections@2019-12-01'", + "label": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualWans/p2sVpnServerConfigurations` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c7b", + "sortText": "00000c1e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2019-12-01'" + "newText": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2018-12-01'" } }, { - "label": "'Microsoft.Network/vpnGateways/vpnConnections@2020-03-01'", + "label": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualWans/p2sVpnServerConfigurations` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c7a", + "sortText": "00000c1d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2020-03-01'" + "newText": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2019-02-01'" } }, { - "label": "'Microsoft.Network/vpnGateways/vpnConnections@2020-04-01'", + "label": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualWans/p2sVpnServerConfigurations` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c79", + "sortText": "00000c1c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2020-04-01'" + "newText": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2019-04-01'" } }, { - "label": "'Microsoft.Network/vpnGateways/vpnConnections@2020-05-01'", + "label": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualWans/p2sVpnServerConfigurations` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c78", + "sortText": "00000c1b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2020-05-01'" + "newText": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2019-06-01'" } }, { - "label": "'Microsoft.Network/vpnGateways/vpnConnections@2020-06-01'", + "label": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualWans/p2sVpnServerConfigurations` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c77", + "sortText": "00000c1a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2020-06-01'" + "newText": "'Microsoft.Network/virtualWans/p2sVpnServerConfigurations@2019-07-01'" } }, { - "label": "'Microsoft.Network/vpnGateways@2018-04-01'", + "label": "'Microsoft.Network/virtualWans@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c76", + "sortText": "00000c19", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways@2018-04-01'" + "newText": "'Microsoft.Network/virtualWans@2018-04-01'" } }, { - "label": "'Microsoft.Network/vpnGateways@2018-06-01'", + "label": "'Microsoft.Network/virtualWans@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c75", + "sortText": "00000c18", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways@2018-06-01'" + "newText": "'Microsoft.Network/virtualWans@2018-06-01'" } }, { - "label": "'Microsoft.Network/vpnGateways@2018-07-01'", + "label": "'Microsoft.Network/virtualWans@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c74", + "sortText": "00000c17", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways@2018-07-01'" + "newText": "'Microsoft.Network/virtualWans@2018-07-01'" } }, { - "label": "'Microsoft.Network/vpnGateways@2018-08-01'", + "label": "'Microsoft.Network/virtualWans@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c73", + "sortText": "00000c16", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways@2018-08-01'" + "newText": "'Microsoft.Network/virtualWans@2018-08-01'" } }, { - "label": "'Microsoft.Network/vpnGateways@2018-10-01'", + "label": "'Microsoft.Network/virtualWans@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c72", + "sortText": "00000c15", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways@2018-10-01'" + "newText": "'Microsoft.Network/virtualWans@2018-10-01'" } }, { - "label": "'Microsoft.Network/vpnGateways@2018-11-01'", + "label": "'Microsoft.Network/virtualWans@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c71", + "sortText": "00000c14", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways@2018-11-01'" + "newText": "'Microsoft.Network/virtualWans@2018-11-01'" } }, { - "label": "'Microsoft.Network/vpnGateways@2018-12-01'", + "label": "'Microsoft.Network/virtualWans@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c70", + "sortText": "00000c13", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways@2018-12-01'" + "newText": "'Microsoft.Network/virtualWans@2018-12-01'" } }, { - "label": "'Microsoft.Network/vpnGateways@2019-02-01'", + "label": "'Microsoft.Network/virtualWans@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c6f", + "sortText": "00000c12", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways@2019-02-01'" + "newText": "'Microsoft.Network/virtualWans@2019-02-01'" } }, { - "label": "'Microsoft.Network/vpnGateways@2019-04-01'", + "label": "'Microsoft.Network/virtualWans@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c6e", + "sortText": "00000c11", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways@2019-04-01'" + "newText": "'Microsoft.Network/virtualWans@2019-04-01'" } }, { - "label": "'Microsoft.Network/vpnGateways@2019-06-01'", + "label": "'Microsoft.Network/virtualWans@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c6d", + "sortText": "00000c10", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways@2019-06-01'" + "newText": "'Microsoft.Network/virtualWans@2019-06-01'" } }, { - "label": "'Microsoft.Network/vpnGateways@2019-07-01'", + "label": "'Microsoft.Network/virtualWans@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c6c", + "sortText": "00000c0f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways@2019-07-01'" + "newText": "'Microsoft.Network/virtualWans@2019-07-01'" } }, { - "label": "'Microsoft.Network/vpnGateways@2019-08-01'", + "label": "'Microsoft.Network/virtualWans@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c6b", + "sortText": "00000c0e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways@2019-08-01'" + "newText": "'Microsoft.Network/virtualWans@2019-08-01'" } }, { - "label": "'Microsoft.Network/vpnGateways@2019-09-01'", + "label": "'Microsoft.Network/virtualWans@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c6a", + "sortText": "00000c0d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways@2019-09-01'" + "newText": "'Microsoft.Network/virtualWans@2019-09-01'" } }, { - "label": "'Microsoft.Network/vpnGateways@2019-11-01'", + "label": "'Microsoft.Network/virtualWans@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c69", + "sortText": "00000c0c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways@2019-11-01'" + "newText": "'Microsoft.Network/virtualWans@2019-11-01'" } }, { - "label": "'Microsoft.Network/vpnGateways@2019-12-01'", + "label": "'Microsoft.Network/virtualWans@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c68", + "sortText": "00000c0b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways@2019-12-01'" + "newText": "'Microsoft.Network/virtualWans@2019-12-01'" } }, { - "label": "'Microsoft.Network/vpnGateways@2020-03-01'", + "label": "'Microsoft.Network/virtualWans@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c67", + "sortText": "00000c0a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways@2020-03-01'" + "newText": "'Microsoft.Network/virtualWans@2020-03-01'" } }, { - "label": "'Microsoft.Network/vpnGateways@2020-04-01'", + "label": "'Microsoft.Network/virtualWans@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c66", + "sortText": "00000c09", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways@2020-04-01'" + "newText": "'Microsoft.Network/virtualWans@2020-04-01'" } }, { - "label": "'Microsoft.Network/vpnGateways@2020-05-01'", + "label": "'Microsoft.Network/virtualWans@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c65", + "sortText": "00000c08", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways@2020-05-01'" + "newText": "'Microsoft.Network/virtualWans@2020-05-01'" } }, { - "label": "'Microsoft.Network/vpnGateways@2020-06-01'", + "label": "'Microsoft.Network/virtualWans@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualWans` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c64", + "sortText": "00000c07", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnGateways@2020-06-01'" + "newText": "'Microsoft.Network/virtualWans@2020-06-01'" } }, { - "label": "'Microsoft.Network/vpnServerConfigurations@2019-08-01'", + "label": "'Microsoft.Network/virtualnetworkgateways@2015-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnServerConfigurations` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualnetworkgateways` \nAPI Version: `2015-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000c91", + "sortText": "00000b84", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnServerConfigurations@2019-08-01'" + "newText": "'Microsoft.Network/virtualnetworkgateways@2015-05-01-preview'" } }, { - "label": "'Microsoft.Network/vpnServerConfigurations@2019-09-01'", + "label": "'Microsoft.Network/virtualnetworks/subnets@2015-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnServerConfigurations` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualnetworks/subnets` \nAPI Version: `2015-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000c90", + "sortText": "00000bc6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnServerConfigurations@2019-09-01'" + "newText": "'Microsoft.Network/virtualnetworks/subnets@2015-05-01-preview'" } }, { - "label": "'Microsoft.Network/vpnServerConfigurations@2019-11-01'", + "label": "'Microsoft.Network/virtualnetworks/subnets@2015-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnServerConfigurations` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualnetworks/subnets` \nAPI Version: `2015-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000c8f", + "sortText": "00000bc5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnServerConfigurations@2019-11-01'" + "newText": "'Microsoft.Network/virtualnetworks/subnets@2015-06-15'" } }, { - "label": "'Microsoft.Network/vpnServerConfigurations@2019-12-01'", + "label": "'Microsoft.Network/virtualnetworks@2015-05-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnServerConfigurations` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `virtualnetworks` \nAPI Version: `2015-05-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000c8e", + "sortText": "00000ba5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnServerConfigurations@2019-12-01'" + "newText": "'Microsoft.Network/virtualnetworks@2015-05-01-preview'" } }, { - "label": "'Microsoft.Network/vpnServerConfigurations@2020-03-01'", + "label": "'Microsoft.Network/vpnGateways/vpnConnections@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnServerConfigurations` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c8d", + "sortText": "00000c47", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnServerConfigurations@2020-03-01'" + "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2018-04-01'" } }, { - "label": "'Microsoft.Network/vpnServerConfigurations@2020-04-01'", + "label": "'Microsoft.Network/vpnGateways/vpnConnections@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnServerConfigurations` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c8c", + "sortText": "00000c46", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnServerConfigurations@2020-04-01'" + "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2018-06-01'" } }, { - "label": "'Microsoft.Network/vpnServerConfigurations@2020-05-01'", + "label": "'Microsoft.Network/vpnGateways/vpnConnections@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnServerConfigurations` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c8b", + "sortText": "00000c45", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnServerConfigurations@2020-05-01'" + "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2018-07-01'" } }, { - "label": "'Microsoft.Network/vpnServerConfigurations@2020-06-01'", + "label": "'Microsoft.Network/vpnGateways/vpnConnections@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnServerConfigurations` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c8a", + "sortText": "00000c44", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnServerConfigurations@2020-06-01'" + "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2018-08-01'" } }, { - "label": "'Microsoft.Network/vpnSites@2018-04-01'", + "label": "'Microsoft.Network/vpnGateways/vpnConnections@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2018-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ca4", + "sortText": "00000c43", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnSites@2018-04-01'" + "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2018-10-01'" } }, { - "label": "'Microsoft.Network/vpnSites@2018-06-01'", + "label": "'Microsoft.Network/vpnGateways/vpnConnections@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ca3", + "sortText": "00000c42", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnSites@2018-06-01'" + "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2018-11-01'" } }, { - "label": "'Microsoft.Network/vpnSites@2018-07-01'", + "label": "'Microsoft.Network/vpnGateways/vpnConnections@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2018-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ca2", + "sortText": "00000c41", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnSites@2018-07-01'" + "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2018-12-01'" } }, { - "label": "'Microsoft.Network/vpnSites@2018-08-01'", + "label": "'Microsoft.Network/vpnGateways/vpnConnections@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2018-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ca1", + "sortText": "00000c40", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnSites@2018-08-01'" + "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2019-02-01'" } }, { - "label": "'Microsoft.Network/vpnSites@2018-10-01'", + "label": "'Microsoft.Network/vpnGateways/vpnConnections@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2018-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ca0", + "sortText": "00000c3f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnSites@2018-10-01'" + "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2019-04-01'" } }, { - "label": "'Microsoft.Network/vpnSites@2018-11-01'", + "label": "'Microsoft.Network/vpnGateways/vpnConnections@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2018-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c9f", + "sortText": "00000c3e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnSites@2018-11-01'" + "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2019-06-01'" } }, { - "label": "'Microsoft.Network/vpnSites@2018-12-01'", + "label": "'Microsoft.Network/vpnGateways/vpnConnections@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2018-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c9e", + "sortText": "00000c3d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnSites@2018-12-01'" + "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2019-07-01'" } }, { - "label": "'Microsoft.Network/vpnSites@2019-02-01'", + "label": "'Microsoft.Network/vpnGateways/vpnConnections@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2019-02-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c9d", + "sortText": "00000c3c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnSites@2019-02-01'" + "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2019-08-01'" } }, { - "label": "'Microsoft.Network/vpnSites@2019-04-01'", + "label": "'Microsoft.Network/vpnGateways/vpnConnections@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2019-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c9c", + "sortText": "00000c3b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnSites@2019-04-01'" + "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2019-09-01'" } }, { - "label": "'Microsoft.Network/vpnSites@2019-06-01'", + "label": "'Microsoft.Network/vpnGateways/vpnConnections@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2019-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c9b", + "sortText": "00000c3a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnSites@2019-06-01'" + "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2019-11-01'" } }, { - "label": "'Microsoft.Network/vpnSites@2019-07-01'", + "label": "'Microsoft.Network/vpnGateways/vpnConnections@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c9a", + "sortText": "00000c39", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnSites@2019-07-01'" + "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2019-12-01'" } }, { - "label": "'Microsoft.Network/vpnSites@2019-08-01'", + "label": "'Microsoft.Network/vpnGateways/vpnConnections@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c99", + "sortText": "00000c38", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnSites@2019-08-01'" + "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2020-03-01'" } }, { - "label": "'Microsoft.Network/vpnSites@2019-09-01'", + "label": "'Microsoft.Network/vpnGateways/vpnConnections@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2019-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c98", + "sortText": "00000c37", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnSites@2019-09-01'" + "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2020-04-01'" } }, { - "label": "'Microsoft.Network/vpnSites@2019-11-01'", + "label": "'Microsoft.Network/vpnGateways/vpnConnections@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2019-11-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c97", + "sortText": "00000c36", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnSites@2019-11-01'" + "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2020-05-01'" } }, { - "label": "'Microsoft.Network/vpnSites@2019-12-01'", + "label": "'Microsoft.Network/vpnGateways/vpnConnections@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2019-12-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways/vpnConnections` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c96", + "sortText": "00000c35", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnSites@2019-12-01'" + "newText": "'Microsoft.Network/vpnGateways/vpnConnections@2020-06-01'" } }, { - "label": "'Microsoft.Network/vpnSites@2020-03-01'", + "label": "'Microsoft.Network/vpnGateways@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2020-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c95", + "sortText": "00000c34", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnSites@2020-03-01'" + "newText": "'Microsoft.Network/vpnGateways@2018-04-01'" } }, { - "label": "'Microsoft.Network/vpnSites@2020-04-01'", + "label": "'Microsoft.Network/vpnGateways@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c94", + "sortText": "00000c33", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnSites@2020-04-01'" + "newText": "'Microsoft.Network/vpnGateways@2018-06-01'" } }, { - "label": "'Microsoft.Network/vpnSites@2020-05-01'", + "label": "'Microsoft.Network/vpnGateways@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2020-05-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c93", + "sortText": "00000c32", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnSites@2020-05-01'" + "newText": "'Microsoft.Network/vpnGateways@2018-07-01'" } }, { - "label": "'Microsoft.Network/vpnSites@2020-06-01'", + "label": "'Microsoft.Network/vpnGateways@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000c92", + "sortText": "00000c31", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Network/vpnSites@2020-06-01'" + "newText": "'Microsoft.Network/vpnGateways@2018-08-01'" } }, { - "label": "'Microsoft.Notebooks/notebookProxies@2019-10-11-preview'", + "label": "'Microsoft.Network/vpnGateways@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Notebooks` \nType: `notebookProxies` \nAPI Version: `2019-10-11-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ca5", + "sortText": "00000c30", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Notebooks/notebookProxies@2019-10-11-preview'" + "newText": "'Microsoft.Network/vpnGateways@2018-10-01'" } }, { - "label": "'Microsoft.NotificationHubs/namespaces/AuthorizationRules@2014-09-01'", + "label": "'Microsoft.Network/vpnGateways@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NotificationHubs` \nType: `namespaces/AuthorizationRules` \nAPI Version: `2014-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cab", + "sortText": "00000c2f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NotificationHubs/namespaces/AuthorizationRules@2014-09-01'" + "newText": "'Microsoft.Network/vpnGateways@2018-11-01'" } }, { - "label": "'Microsoft.NotificationHubs/namespaces/AuthorizationRules@2016-03-01'", + "label": "'Microsoft.Network/vpnGateways@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NotificationHubs` \nType: `namespaces/AuthorizationRules` \nAPI Version: `2016-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000caa", + "sortText": "00000c2e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NotificationHubs/namespaces/AuthorizationRules@2016-03-01'" + "newText": "'Microsoft.Network/vpnGateways@2018-12-01'" } }, { - "label": "'Microsoft.NotificationHubs/namespaces/AuthorizationRules@2017-04-01'", + "label": "'Microsoft.Network/vpnGateways@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NotificationHubs` \nType: `namespaces/AuthorizationRules` \nAPI Version: `2017-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ca9", + "sortText": "00000c2d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NotificationHubs/namespaces/AuthorizationRules@2017-04-01'" + "newText": "'Microsoft.Network/vpnGateways@2019-02-01'" } }, { - "label": "'Microsoft.NotificationHubs/namespaces/notificationHubs/AuthorizationRules@2014-09-01'", + "label": "'Microsoft.Network/vpnGateways@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NotificationHubs` \nType: `namespaces/notificationHubs/AuthorizationRules` \nAPI Version: `2014-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cb1", + "sortText": "00000c2c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NotificationHubs/namespaces/notificationHubs/AuthorizationRules@2014-09-01'" + "newText": "'Microsoft.Network/vpnGateways@2019-04-01'" } }, { - "label": "'Microsoft.NotificationHubs/namespaces/notificationHubs/AuthorizationRules@2016-03-01'", + "label": "'Microsoft.Network/vpnGateways@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NotificationHubs` \nType: `namespaces/notificationHubs/AuthorizationRules` \nAPI Version: `2016-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cb0", + "sortText": "00000c2b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NotificationHubs/namespaces/notificationHubs/AuthorizationRules@2016-03-01'" + "newText": "'Microsoft.Network/vpnGateways@2019-06-01'" } }, { - "label": "'Microsoft.NotificationHubs/namespaces/notificationHubs/AuthorizationRules@2017-04-01'", + "label": "'Microsoft.Network/vpnGateways@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NotificationHubs` \nType: `namespaces/notificationHubs/AuthorizationRules` \nAPI Version: `2017-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000caf", + "sortText": "00000c2a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NotificationHubs/namespaces/notificationHubs/AuthorizationRules@2017-04-01'" + "newText": "'Microsoft.Network/vpnGateways@2019-07-01'" } }, { - "label": "'Microsoft.NotificationHubs/namespaces/notificationHubs@2014-09-01'", + "label": "'Microsoft.Network/vpnGateways@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NotificationHubs` \nType: `namespaces/notificationHubs` \nAPI Version: `2014-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cae", + "sortText": "00000c29", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NotificationHubs/namespaces/notificationHubs@2014-09-01'" + "newText": "'Microsoft.Network/vpnGateways@2019-08-01'" } }, { - "label": "'Microsoft.NotificationHubs/namespaces/notificationHubs@2016-03-01'", + "label": "'Microsoft.Network/vpnGateways@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NotificationHubs` \nType: `namespaces/notificationHubs` \nAPI Version: `2016-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cad", + "sortText": "00000c28", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NotificationHubs/namespaces/notificationHubs@2016-03-01'" + "newText": "'Microsoft.Network/vpnGateways@2019-09-01'" } }, { - "label": "'Microsoft.NotificationHubs/namespaces/notificationHubs@2017-04-01'", + "label": "'Microsoft.Network/vpnGateways@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NotificationHubs` \nType: `namespaces/notificationHubs` \nAPI Version: `2017-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cac", + "sortText": "00000c27", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NotificationHubs/namespaces/notificationHubs@2017-04-01'" + "newText": "'Microsoft.Network/vpnGateways@2019-11-01'" } }, { - "label": "'Microsoft.NotificationHubs/namespaces@2014-09-01'", + "label": "'Microsoft.Network/vpnGateways@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NotificationHubs` \nType: `namespaces` \nAPI Version: `2014-09-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ca8", + "sortText": "00000c26", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NotificationHubs/namespaces@2014-09-01'" + "newText": "'Microsoft.Network/vpnGateways@2019-12-01'" } }, { - "label": "'Microsoft.NotificationHubs/namespaces@2016-03-01'", + "label": "'Microsoft.Network/vpnGateways@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NotificationHubs` \nType: `namespaces` \nAPI Version: `2016-03-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ca7", + "sortText": "00000c25", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NotificationHubs/namespaces@2016-03-01'" + "newText": "'Microsoft.Network/vpnGateways@2020-03-01'" } }, { - "label": "'Microsoft.NotificationHubs/namespaces@2017-04-01'", + "label": "'Microsoft.Network/vpnGateways@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.NotificationHubs` \nType: `namespaces` \nAPI Version: `2017-04-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ca6", + "sortText": "00000c24", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.NotificationHubs/namespaces@2017-04-01'" + "newText": "'Microsoft.Network/vpnGateways@2020-04-01'" } }, { - "label": "'Microsoft.OffAzure/HyperVSites/clusters@2020-01-01'", + "label": "'Microsoft.Network/vpnGateways@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OffAzure` \nType: `HyperVSites/clusters` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cb5", + "sortText": "00000c23", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OffAzure/HyperVSites/clusters@2020-01-01'" + "newText": "'Microsoft.Network/vpnGateways@2020-05-01'" } }, { - "label": "'Microsoft.OffAzure/HyperVSites/clusters@2020-07-07'", + "label": "'Microsoft.Network/vpnGateways@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OffAzure` \nType: `HyperVSites/clusters` \nAPI Version: `2020-07-07`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnGateways` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cb4", + "sortText": "00000c22", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OffAzure/HyperVSites/clusters@2020-07-07'" + "newText": "'Microsoft.Network/vpnGateways@2020-06-01'" } }, { - "label": "'Microsoft.OffAzure/HyperVSites/hosts@2020-01-01'", + "label": "'Microsoft.Network/vpnServerConfigurations@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OffAzure` \nType: `HyperVSites/hosts` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnServerConfigurations` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cb7", + "sortText": "00000c4f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OffAzure/HyperVSites/hosts@2020-01-01'" + "newText": "'Microsoft.Network/vpnServerConfigurations@2019-08-01'" } }, { - "label": "'Microsoft.OffAzure/HyperVSites/hosts@2020-07-07'", + "label": "'Microsoft.Network/vpnServerConfigurations@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OffAzure` \nType: `HyperVSites/hosts` \nAPI Version: `2020-07-07`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnServerConfigurations` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cb6", + "sortText": "00000c4e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OffAzure/HyperVSites/hosts@2020-07-07'" + "newText": "'Microsoft.Network/vpnServerConfigurations@2019-09-01'" } }, { - "label": "'Microsoft.OffAzure/HyperVSites@2020-01-01'", + "label": "'Microsoft.Network/vpnServerConfigurations@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OffAzure` \nType: `HyperVSites` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnServerConfigurations` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cb3", + "sortText": "00000c4d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OffAzure/HyperVSites@2020-01-01'" + "newText": "'Microsoft.Network/vpnServerConfigurations@2019-11-01'" } }, { - "label": "'Microsoft.OffAzure/HyperVSites@2020-07-07'", + "label": "'Microsoft.Network/vpnServerConfigurations@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OffAzure` \nType: `HyperVSites` \nAPI Version: `2020-07-07`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnServerConfigurations` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cb2", + "sortText": "00000c4c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OffAzure/HyperVSites@2020-07-07'" + "newText": "'Microsoft.Network/vpnServerConfigurations@2019-12-01'" } }, { - "label": "'Microsoft.OffAzure/MasterSites@2020-07-07'", + "label": "'Microsoft.Network/vpnServerConfigurations@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OffAzure` \nType: `MasterSites` \nAPI Version: `2020-07-07`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnServerConfigurations` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cb8", + "sortText": "00000c4b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OffAzure/MasterSites@2020-07-07'" + "newText": "'Microsoft.Network/vpnServerConfigurations@2020-03-01'" } }, { - "label": "'Microsoft.OffAzure/VMwareSites/vCenters@2020-01-01'", + "label": "'Microsoft.Network/vpnServerConfigurations@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OffAzure` \nType: `VMwareSites/vCenters` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnServerConfigurations` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cbc", + "sortText": "00000c4a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OffAzure/VMwareSites/vCenters@2020-01-01'" + "newText": "'Microsoft.Network/vpnServerConfigurations@2020-04-01'" } }, { - "label": "'Microsoft.OffAzure/VMwareSites/vCenters@2020-07-07'", + "label": "'Microsoft.Network/vpnServerConfigurations@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OffAzure` \nType: `VMwareSites/vCenters` \nAPI Version: `2020-07-07`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnServerConfigurations` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cbb", + "sortText": "00000c49", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OffAzure/VMwareSites/vCenters@2020-07-07'" + "newText": "'Microsoft.Network/vpnServerConfigurations@2020-05-01'" } }, { - "label": "'Microsoft.OffAzure/VMwareSites@2020-01-01'", + "label": "'Microsoft.Network/vpnServerConfigurations@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OffAzure` \nType: `VMwareSites` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnServerConfigurations` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cba", + "sortText": "00000c48", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OffAzure/VMwareSites@2020-01-01'" + "newText": "'Microsoft.Network/vpnServerConfigurations@2020-06-01'" } }, { - "label": "'Microsoft.OffAzure/VMwareSites@2020-07-07'", + "label": "'Microsoft.Network/vpnSites@2018-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OffAzure` \nType: `VMwareSites` \nAPI Version: `2020-07-07`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2018-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cb9", + "sortText": "00000c62", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OffAzure/VMwareSites@2020-07-07'" + "newText": "'Microsoft.Network/vpnSites@2018-04-01'" } }, { - "label": "'Microsoft.OperationalInsights/clusters@2019-08-01-preview'", + "label": "'Microsoft.Network/vpnSites@2018-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `clusters` \nAPI Version: `2019-08-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2018-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cc0", + "sortText": "00000c61", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/clusters@2019-08-01-preview'" + "newText": "'Microsoft.Network/vpnSites@2018-06-01'" } }, { - "label": "'Microsoft.OperationalInsights/clusters@2020-03-01-preview'", + "label": "'Microsoft.Network/vpnSites@2018-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `clusters` \nAPI Version: `2020-03-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2018-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cbf", + "sortText": "00000c60", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/clusters@2020-03-01-preview'" + "newText": "'Microsoft.Network/vpnSites@2018-07-01'" } }, { - "label": "'Microsoft.OperationalInsights/clusters@2020-08-01'", + "label": "'Microsoft.Network/vpnSites@2018-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `clusters` \nAPI Version: `2020-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2018-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cbe", + "sortText": "00000c5f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/clusters@2020-08-01'" + "newText": "'Microsoft.Network/vpnSites@2018-08-01'" } }, { - "label": "'Microsoft.OperationalInsights/clusters@2020-10-01'", + "label": "'Microsoft.Network/vpnSites@2018-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `clusters` \nAPI Version: `2020-10-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2018-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cbd", + "sortText": "00000c5e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/clusters@2020-10-01'" + "newText": "'Microsoft.Network/vpnSites@2018-10-01'" } }, { - "label": "'Microsoft.OperationalInsights/queryPacks/queries@2019-09-01-preview'", + "label": "'Microsoft.Network/vpnSites@2018-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `queryPacks/queries` \nAPI Version: `2019-09-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2018-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cc2", + "sortText": "00000c5d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/queryPacks/queries@2019-09-01-preview'" + "newText": "'Microsoft.Network/vpnSites@2018-11-01'" } }, { - "label": "'Microsoft.OperationalInsights/queryPacks@2019-09-01-preview'", + "label": "'Microsoft.Network/vpnSites@2018-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `queryPacks` \nAPI Version: `2019-09-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2018-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cc1", + "sortText": "00000c5c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/queryPacks@2019-09-01-preview'" + "newText": "'Microsoft.Network/vpnSites@2018-12-01'" } }, { - "label": "'Microsoft.OperationalInsights/workspaces/dataExports@2019-08-01-preview'", + "label": "'Microsoft.Network/vpnSites@2019-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/dataExports` \nAPI Version: `2019-08-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2019-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cc9", + "sortText": "00000c5b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/workspaces/dataExports@2019-08-01-preview'" + "newText": "'Microsoft.Network/vpnSites@2019-02-01'" } }, { - "label": "'Microsoft.OperationalInsights/workspaces/dataExports@2020-03-01-preview'", + "label": "'Microsoft.Network/vpnSites@2019-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/dataExports` \nAPI Version: `2020-03-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2019-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cc8", + "sortText": "00000c5a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/workspaces/dataExports@2020-03-01-preview'" + "newText": "'Microsoft.Network/vpnSites@2019-04-01'" } }, { - "label": "'Microsoft.OperationalInsights/workspaces/dataExports@2020-08-01'", + "label": "'Microsoft.Network/vpnSites@2019-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/dataExports` \nAPI Version: `2020-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2019-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cc7", + "sortText": "00000c59", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/workspaces/dataExports@2020-08-01'" + "newText": "'Microsoft.Network/vpnSites@2019-06-01'" } }, { - "label": "'Microsoft.OperationalInsights/workspaces/dataSources@2015-11-01-preview'", + "label": "'Microsoft.Network/vpnSites@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/dataSources` \nAPI Version: `2015-11-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ccc", + "sortText": "00000c58", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/workspaces/dataSources@2015-11-01-preview'" + "newText": "'Microsoft.Network/vpnSites@2019-07-01'" } }, { - "label": "'Microsoft.OperationalInsights/workspaces/dataSources@2020-03-01-preview'", + "label": "'Microsoft.Network/vpnSites@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/dataSources` \nAPI Version: `2020-03-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ccb", + "sortText": "00000c57", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/workspaces/dataSources@2020-03-01-preview'" + "newText": "'Microsoft.Network/vpnSites@2019-08-01'" } }, { - "label": "'Microsoft.OperationalInsights/workspaces/dataSources@2020-08-01'", + "label": "'Microsoft.Network/vpnSites@2019-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/dataSources` \nAPI Version: `2020-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2019-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cca", + "sortText": "00000c56", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/workspaces/dataSources@2020-08-01'" + "newText": "'Microsoft.Network/vpnSites@2019-09-01'" } }, { - "label": "'Microsoft.OperationalInsights/workspaces/linkedServices@2015-11-01-preview'", + "label": "'Microsoft.Network/vpnSites@2019-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/linkedServices` \nAPI Version: `2015-11-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2019-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cd0", + "sortText": "00000c55", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/workspaces/linkedServices@2015-11-01-preview'" + "newText": "'Microsoft.Network/vpnSites@2019-11-01'" } }, { - "label": "'Microsoft.OperationalInsights/workspaces/linkedServices@2019-08-01-preview'", + "label": "'Microsoft.Network/vpnSites@2019-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/linkedServices` \nAPI Version: `2019-08-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2019-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ccf", + "sortText": "00000c54", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/workspaces/linkedServices@2019-08-01-preview'" + "newText": "'Microsoft.Network/vpnSites@2019-12-01'" } }, { - "label": "'Microsoft.OperationalInsights/workspaces/linkedServices@2020-03-01-preview'", + "label": "'Microsoft.Network/vpnSites@2020-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/linkedServices` \nAPI Version: `2020-03-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2020-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cce", + "sortText": "00000c53", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/workspaces/linkedServices@2020-03-01-preview'" + "newText": "'Microsoft.Network/vpnSites@2020-03-01'" } }, { - "label": "'Microsoft.OperationalInsights/workspaces/linkedServices@2020-08-01'", + "label": "'Microsoft.Network/vpnSites@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/linkedServices` \nAPI Version: `2020-08-01`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ccd", + "sortText": "00000c52", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/workspaces/linkedServices@2020-08-01'" + "newText": "'Microsoft.Network/vpnSites@2020-04-01'" } }, { - "label": "'Microsoft.OperationalInsights/workspaces/linkedStorageAccounts@2019-08-01-preview'", + "label": "'Microsoft.Network/vpnSites@2020-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/linkedStorageAccounts` \nAPI Version: `2019-08-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2020-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cd3", + "sortText": "00000c51", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/workspaces/linkedStorageAccounts@2019-08-01-preview'" + "newText": "'Microsoft.Network/vpnSites@2020-05-01'" } }, { - "label": "'Microsoft.OperationalInsights/workspaces/linkedStorageAccounts@2020-03-01-preview'", + "label": "'Microsoft.Network/vpnSites@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/linkedStorageAccounts` \nAPI Version: `2020-03-01-preview`" + "value": "Namespace: `Microsoft.Network` \nType: `vpnSites` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cd2", + "sortText": "00000c50", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/workspaces/linkedStorageAccounts@2020-03-01-preview'" + "newText": "'Microsoft.Network/vpnSites@2020-06-01'" } }, { - "label": "'Microsoft.OperationalInsights/workspaces/linkedStorageAccounts@2020-08-01'", + "label": "'Microsoft.Notebooks/notebookProxies@2019-10-11-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/linkedStorageAccounts` \nAPI Version: `2020-08-01`" + "value": "Namespace: `Microsoft.Notebooks` \nType: `notebookProxies` \nAPI Version: `2019-10-11-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000cd1", + "sortText": "00000c63", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/workspaces/linkedStorageAccounts@2020-08-01'" + "newText": "'Microsoft.Notebooks/notebookProxies@2019-10-11-preview'" } }, { - "label": "'Microsoft.OperationalInsights/workspaces/savedSearches@2015-03-20'", + "label": "'Microsoft.NotificationHubs/namespaces/AuthorizationRules@2014-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/savedSearches` \nAPI Version: `2015-03-20`" + "value": "Namespace: `Microsoft.NotificationHubs` \nType: `namespaces/AuthorizationRules` \nAPI Version: `2014-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cd6", + "sortText": "00000c69", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/workspaces/savedSearches@2015-03-20'" + "newText": "'Microsoft.NotificationHubs/namespaces/AuthorizationRules@2014-09-01'" } }, { - "label": "'Microsoft.OperationalInsights/workspaces/savedSearches@2020-03-01-preview'", + "label": "'Microsoft.NotificationHubs/namespaces/AuthorizationRules@2016-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/savedSearches` \nAPI Version: `2020-03-01-preview`" + "value": "Namespace: `Microsoft.NotificationHubs` \nType: `namespaces/AuthorizationRules` \nAPI Version: `2016-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cd5", + "sortText": "00000c68", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/workspaces/savedSearches@2020-03-01-preview'" + "newText": "'Microsoft.NotificationHubs/namespaces/AuthorizationRules@2016-03-01'" } }, { - "label": "'Microsoft.OperationalInsights/workspaces/savedSearches@2020-08-01'", + "label": "'Microsoft.NotificationHubs/namespaces/AuthorizationRules@2017-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/savedSearches` \nAPI Version: `2020-08-01`" + "value": "Namespace: `Microsoft.NotificationHubs` \nType: `namespaces/AuthorizationRules` \nAPI Version: `2017-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cd4", + "sortText": "00000c67", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/workspaces/savedSearches@2020-08-01'" + "newText": "'Microsoft.NotificationHubs/namespaces/AuthorizationRules@2017-04-01'" } }, { - "label": "'Microsoft.OperationalInsights/workspaces/storageInsightConfigs@2015-03-20'", + "label": "'Microsoft.NotificationHubs/namespaces/notificationHubs/AuthorizationRules@2014-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/storageInsightConfigs` \nAPI Version: `2015-03-20`" + "value": "Namespace: `Microsoft.NotificationHubs` \nType: `namespaces/notificationHubs/AuthorizationRules` \nAPI Version: `2014-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cd9", + "sortText": "00000c6f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/workspaces/storageInsightConfigs@2015-03-20'" + "newText": "'Microsoft.NotificationHubs/namespaces/notificationHubs/AuthorizationRules@2014-09-01'" } }, { - "label": "'Microsoft.OperationalInsights/workspaces/storageInsightConfigs@2020-03-01-preview'", + "label": "'Microsoft.NotificationHubs/namespaces/notificationHubs/AuthorizationRules@2016-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/storageInsightConfigs` \nAPI Version: `2020-03-01-preview`" + "value": "Namespace: `Microsoft.NotificationHubs` \nType: `namespaces/notificationHubs/AuthorizationRules` \nAPI Version: `2016-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cd8", + "sortText": "00000c6e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/workspaces/storageInsightConfigs@2020-03-01-preview'" + "newText": "'Microsoft.NotificationHubs/namespaces/notificationHubs/AuthorizationRules@2016-03-01'" } }, { - "label": "'Microsoft.OperationalInsights/workspaces/storageInsightConfigs@2020-08-01'", + "label": "'Microsoft.NotificationHubs/namespaces/notificationHubs/AuthorizationRules@2017-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/storageInsightConfigs` \nAPI Version: `2020-08-01`" + "value": "Namespace: `Microsoft.NotificationHubs` \nType: `namespaces/notificationHubs/AuthorizationRules` \nAPI Version: `2017-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cd7", + "sortText": "00000c6d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/workspaces/storageInsightConfigs@2020-08-01'" + "newText": "'Microsoft.NotificationHubs/namespaces/notificationHubs/AuthorizationRules@2017-04-01'" } }, { - "label": "'Microsoft.OperationalInsights/workspaces@2015-11-01-preview'", + "label": "'Microsoft.NotificationHubs/namespaces/notificationHubs@2014-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces` \nAPI Version: `2015-11-01-preview`" + "value": "Namespace: `Microsoft.NotificationHubs` \nType: `namespaces/notificationHubs` \nAPI Version: `2014-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cc6", + "sortText": "00000c6c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/workspaces@2015-11-01-preview'" + "newText": "'Microsoft.NotificationHubs/namespaces/notificationHubs@2014-09-01'" } }, { - "label": "'Microsoft.OperationalInsights/workspaces@2020-03-01-preview'", + "label": "'Microsoft.NotificationHubs/namespaces/notificationHubs@2016-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces` \nAPI Version: `2020-03-01-preview`" + "value": "Namespace: `Microsoft.NotificationHubs` \nType: `namespaces/notificationHubs` \nAPI Version: `2016-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cc5", + "sortText": "00000c6b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/workspaces@2020-03-01-preview'" + "newText": "'Microsoft.NotificationHubs/namespaces/notificationHubs@2016-03-01'" } }, { - "label": "'Microsoft.OperationalInsights/workspaces@2020-08-01'", + "label": "'Microsoft.NotificationHubs/namespaces/notificationHubs@2017-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces` \nAPI Version: `2020-08-01`" + "value": "Namespace: `Microsoft.NotificationHubs` \nType: `namespaces/notificationHubs` \nAPI Version: `2017-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cc4", + "sortText": "00000c6a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/workspaces@2020-08-01'" + "newText": "'Microsoft.NotificationHubs/namespaces/notificationHubs@2017-04-01'" } }, { - "label": "'Microsoft.OperationalInsights/workspaces@2020-10-01'", + "label": "'Microsoft.NotificationHubs/namespaces@2014-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces` \nAPI Version: `2020-10-01`" + "value": "Namespace: `Microsoft.NotificationHubs` \nType: `namespaces` \nAPI Version: `2014-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cc3", + "sortText": "00000c66", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationalInsights/workspaces@2020-10-01'" + "newText": "'Microsoft.NotificationHubs/namespaces@2014-09-01'" } }, { - "label": "'Microsoft.OperationsManagement/ManagementAssociations@2015-11-01-preview'", + "label": "'Microsoft.NotificationHubs/namespaces@2016-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationsManagement` \nType: `ManagementAssociations` \nAPI Version: `2015-11-01-preview`" + "value": "Namespace: `Microsoft.NotificationHubs` \nType: `namespaces` \nAPI Version: `2016-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cda", + "sortText": "00000c65", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationsManagement/ManagementAssociations@2015-11-01-preview'" + "newText": "'Microsoft.NotificationHubs/namespaces@2016-03-01'" } }, { - "label": "'Microsoft.OperationsManagement/ManagementConfigurations@2015-11-01-preview'", + "label": "'Microsoft.NotificationHubs/namespaces@2017-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationsManagement` \nType: `ManagementConfigurations` \nAPI Version: `2015-11-01-preview`" + "value": "Namespace: `Microsoft.NotificationHubs` \nType: `namespaces` \nAPI Version: `2017-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cdb", + "sortText": "00000c64", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationsManagement/ManagementConfigurations@2015-11-01-preview'" + "newText": "'Microsoft.NotificationHubs/namespaces@2017-04-01'" } }, { - "label": "'Microsoft.OperationsManagement/solutions@2015-11-01-preview'", + "label": "'Microsoft.OffAzure/HyperVSites/clusters@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.OperationsManagement` \nType: `solutions` \nAPI Version: `2015-11-01-preview`" + "value": "Namespace: `Microsoft.OffAzure` \nType: `HyperVSites/clusters` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cdc", + "sortText": "00000c73", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.OperationsManagement/solutions@2015-11-01-preview'" + "newText": "'Microsoft.OffAzure/HyperVSites/clusters@2020-01-01'" } }, { - "label": "'Microsoft.Peering/peerAsns@2019-08-01-preview'", + "label": "'Microsoft.OffAzure/HyperVSites/clusters@2020-07-07'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Peering` \nType: `peerAsns` \nAPI Version: `2019-08-01-preview`" + "value": "Namespace: `Microsoft.OffAzure` \nType: `HyperVSites/clusters` \nAPI Version: `2020-07-07`" }, "deprecated": false, "preselect": false, - "sortText": "00000ce1", + "sortText": "00000c72", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Peering/peerAsns@2019-08-01-preview'" + "newText": "'Microsoft.OffAzure/HyperVSites/clusters@2020-07-07'" } }, { - "label": "'Microsoft.Peering/peerAsns@2019-09-01-preview'", + "label": "'Microsoft.OffAzure/HyperVSites/hosts@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Peering` \nType: `peerAsns` \nAPI Version: `2019-09-01-preview`" + "value": "Namespace: `Microsoft.OffAzure` \nType: `HyperVSites/hosts` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ce0", + "sortText": "00000c75", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Peering/peerAsns@2019-09-01-preview'" + "newText": "'Microsoft.OffAzure/HyperVSites/hosts@2020-01-01'" } }, { - "label": "'Microsoft.Peering/peerAsns@2020-01-01-preview'", + "label": "'Microsoft.OffAzure/HyperVSites/hosts@2020-07-07'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Peering` \nType: `peerAsns` \nAPI Version: `2020-01-01-preview`" + "value": "Namespace: `Microsoft.OffAzure` \nType: `HyperVSites/hosts` \nAPI Version: `2020-07-07`" }, "deprecated": false, "preselect": false, - "sortText": "00000cdf", + "sortText": "00000c74", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Peering/peerAsns@2020-01-01-preview'" + "newText": "'Microsoft.OffAzure/HyperVSites/hosts@2020-07-07'" } }, { - "label": "'Microsoft.Peering/peerAsns@2020-04-01'", + "label": "'Microsoft.OffAzure/HyperVSites@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Peering` \nType: `peerAsns` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.OffAzure` \nType: `HyperVSites` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cde", + "sortText": "00000c71", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Peering/peerAsns@2020-04-01'" + "newText": "'Microsoft.OffAzure/HyperVSites@2020-01-01'" } }, { - "label": "'Microsoft.Peering/peerAsns@2020-10-01'", + "label": "'Microsoft.OffAzure/HyperVSites@2020-07-07'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Peering` \nType: `peerAsns` \nAPI Version: `2020-10-01`" + "value": "Namespace: `Microsoft.OffAzure` \nType: `HyperVSites` \nAPI Version: `2020-07-07`" }, "deprecated": false, "preselect": false, - "sortText": "00000cdd", + "sortText": "00000c70", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Peering/peerAsns@2020-10-01'" + "newText": "'Microsoft.OffAzure/HyperVSites@2020-07-07'" } }, { - "label": "'Microsoft.Peering/peeringServices/prefixes@2019-08-01-preview'", + "label": "'Microsoft.OffAzure/MasterSites@2020-07-07'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Peering` \nType: `peeringServices/prefixes` \nAPI Version: `2019-08-01-preview`" + "value": "Namespace: `Microsoft.OffAzure` \nType: `MasterSites` \nAPI Version: `2020-07-07`" }, "deprecated": false, "preselect": false, - "sortText": "00000cf6", + "sortText": "00000c76", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Peering/peeringServices/prefixes@2019-08-01-preview'" + "newText": "'Microsoft.OffAzure/MasterSites@2020-07-07'" } }, { - "label": "'Microsoft.Peering/peeringServices/prefixes@2019-09-01-preview'", + "label": "'Microsoft.OffAzure/VMwareSites/vCenters@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Peering` \nType: `peeringServices/prefixes` \nAPI Version: `2019-09-01-preview`" + "value": "Namespace: `Microsoft.OffAzure` \nType: `VMwareSites/vCenters` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cf5", + "sortText": "00000c7a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Peering/peeringServices/prefixes@2019-09-01-preview'" + "newText": "'Microsoft.OffAzure/VMwareSites/vCenters@2020-01-01'" } }, { - "label": "'Microsoft.Peering/peeringServices/prefixes@2020-01-01-preview'", + "label": "'Microsoft.OffAzure/VMwareSites/vCenters@2020-07-07'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Peering` \nType: `peeringServices/prefixes` \nAPI Version: `2020-01-01-preview`" + "value": "Namespace: `Microsoft.OffAzure` \nType: `VMwareSites/vCenters` \nAPI Version: `2020-07-07`" }, "deprecated": false, "preselect": false, - "sortText": "00000cf4", + "sortText": "00000c79", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Peering/peeringServices/prefixes@2020-01-01-preview'" + "newText": "'Microsoft.OffAzure/VMwareSites/vCenters@2020-07-07'" } }, { - "label": "'Microsoft.Peering/peeringServices/prefixes@2020-04-01'", + "label": "'Microsoft.OffAzure/VMwareSites@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Peering` \nType: `peeringServices/prefixes` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.OffAzure` \nType: `VMwareSites` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cf3", + "sortText": "00000c78", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Peering/peeringServices/prefixes@2020-04-01'" + "newText": "'Microsoft.OffAzure/VMwareSites@2020-01-01'" } }, { - "label": "'Microsoft.Peering/peeringServices/prefixes@2020-10-01'", + "label": "'Microsoft.OffAzure/VMwareSites@2020-07-07'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Peering` \nType: `peeringServices/prefixes` \nAPI Version: `2020-10-01`" + "value": "Namespace: `Microsoft.OffAzure` \nType: `VMwareSites` \nAPI Version: `2020-07-07`" }, "deprecated": false, "preselect": false, - "sortText": "00000cf2", + "sortText": "00000c77", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Peering/peeringServices/prefixes@2020-10-01'" + "newText": "'Microsoft.OffAzure/VMwareSites@2020-07-07'" } }, { - "label": "'Microsoft.Peering/peeringServices@2019-08-01-preview'", + "label": "'Microsoft.OperationalInsights/clusters@2019-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Peering` \nType: `peeringServices` \nAPI Version: `2019-08-01-preview`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `clusters` \nAPI Version: `2019-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000cf1", + "sortText": "00000c7e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Peering/peeringServices@2019-08-01-preview'" + "newText": "'Microsoft.OperationalInsights/clusters@2019-08-01-preview'" } }, { - "label": "'Microsoft.Peering/peeringServices@2019-09-01-preview'", + "label": "'Microsoft.OperationalInsights/clusters@2020-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Peering` \nType: `peeringServices` \nAPI Version: `2019-09-01-preview`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `clusters` \nAPI Version: `2020-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000cf0", + "sortText": "00000c7d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Peering/peeringServices@2019-09-01-preview'" + "newText": "'Microsoft.OperationalInsights/clusters@2020-03-01-preview'" } }, { - "label": "'Microsoft.Peering/peeringServices@2020-01-01-preview'", + "label": "'Microsoft.OperationalInsights/clusters@2020-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Peering` \nType: `peeringServices` \nAPI Version: `2020-01-01-preview`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `clusters` \nAPI Version: `2020-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cef", + "sortText": "00000c7c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Peering/peeringServices@2020-01-01-preview'" + "newText": "'Microsoft.OperationalInsights/clusters@2020-08-01'" } }, { - "label": "'Microsoft.Peering/peeringServices@2020-04-01'", + "label": "'Microsoft.OperationalInsights/clusters@2020-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Peering` \nType: `peeringServices` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `clusters` \nAPI Version: `2020-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cee", + "sortText": "00000c7b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Peering/peeringServices@2020-04-01'" + "newText": "'Microsoft.OperationalInsights/clusters@2020-10-01'" } }, { - "label": "'Microsoft.Peering/peeringServices@2020-10-01'", + "label": "'Microsoft.OperationalInsights/queryPacks/queries@2019-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Peering` \nType: `peeringServices` \nAPI Version: `2020-10-01`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `queryPacks/queries` \nAPI Version: `2019-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000ced", + "sortText": "00000c80", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Peering/peeringServices@2020-10-01'" + "newText": "'Microsoft.OperationalInsights/queryPacks/queries@2019-09-01-preview'" } }, { - "label": "'Microsoft.Peering/peerings/registeredAsns@2020-01-01-preview'", + "label": "'Microsoft.OperationalInsights/queryPacks@2019-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Peering` \nType: `peerings/registeredAsns` \nAPI Version: `2020-01-01-preview`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `queryPacks` \nAPI Version: `2019-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000ce9", + "sortText": "00000c7f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Peering/peerings/registeredAsns@2020-01-01-preview'" + "newText": "'Microsoft.OperationalInsights/queryPacks@2019-09-01-preview'" } }, { - "label": "'Microsoft.Peering/peerings/registeredAsns@2020-04-01'", + "label": "'Microsoft.OperationalInsights/workspaces/dataExports@2019-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Peering` \nType: `peerings/registeredAsns` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/dataExports` \nAPI Version: `2019-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000ce8", + "sortText": "00000c87", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Peering/peerings/registeredAsns@2020-04-01'" + "newText": "'Microsoft.OperationalInsights/workspaces/dataExports@2019-08-01-preview'" } }, { - "label": "'Microsoft.Peering/peerings/registeredAsns@2020-10-01'", + "label": "'Microsoft.OperationalInsights/workspaces/dataExports@2020-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Peering` \nType: `peerings/registeredAsns` \nAPI Version: `2020-10-01`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/dataExports` \nAPI Version: `2020-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000ce7", + "sortText": "00000c86", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Peering/peerings/registeredAsns@2020-10-01'" + "newText": "'Microsoft.OperationalInsights/workspaces/dataExports@2020-03-01-preview'" } }, { - "label": "'Microsoft.Peering/peerings/registeredPrefixes@2020-01-01-preview'", + "label": "'Microsoft.OperationalInsights/workspaces/dataExports@2020-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Peering` \nType: `peerings/registeredPrefixes` \nAPI Version: `2020-01-01-preview`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/dataExports` \nAPI Version: `2020-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cec", + "sortText": "00000c85", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Peering/peerings/registeredPrefixes@2020-01-01-preview'" + "newText": "'Microsoft.OperationalInsights/workspaces/dataExports@2020-08-01'" } }, { - "label": "'Microsoft.Peering/peerings/registeredPrefixes@2020-04-01'", + "label": "'Microsoft.OperationalInsights/workspaces/dataSources@2015-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Peering` \nType: `peerings/registeredPrefixes` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/dataSources` \nAPI Version: `2015-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000ceb", + "sortText": "00000c8a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Peering/peerings/registeredPrefixes@2020-04-01'" + "newText": "'Microsoft.OperationalInsights/workspaces/dataSources@2015-11-01-preview'" } }, { - "label": "'Microsoft.Peering/peerings/registeredPrefixes@2020-10-01'", + "label": "'Microsoft.OperationalInsights/workspaces/dataSources@2020-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Peering` \nType: `peerings/registeredPrefixes` \nAPI Version: `2020-10-01`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/dataSources` \nAPI Version: `2020-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000cea", + "sortText": "00000c89", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Peering/peerings/registeredPrefixes@2020-10-01'" + "newText": "'Microsoft.OperationalInsights/workspaces/dataSources@2020-03-01-preview'" } }, { - "label": "'Microsoft.Peering/peerings@2019-08-01-preview'", + "label": "'Microsoft.OperationalInsights/workspaces/dataSources@2020-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Peering` \nType: `peerings` \nAPI Version: `2019-08-01-preview`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/dataSources` \nAPI Version: `2020-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ce6", + "sortText": "00000c88", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Peering/peerings@2019-08-01-preview'" + "newText": "'Microsoft.OperationalInsights/workspaces/dataSources@2020-08-01'" } }, { - "label": "'Microsoft.Peering/peerings@2019-09-01-preview'", + "label": "'Microsoft.OperationalInsights/workspaces/linkedServices@2015-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Peering` \nType: `peerings` \nAPI Version: `2019-09-01-preview`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/linkedServices` \nAPI Version: `2015-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000ce5", + "sortText": "00000c8e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Peering/peerings@2019-09-01-preview'" + "newText": "'Microsoft.OperationalInsights/workspaces/linkedServices@2015-11-01-preview'" } }, { - "label": "'Microsoft.Peering/peerings@2020-01-01-preview'", + "label": "'Microsoft.OperationalInsights/workspaces/linkedServices@2019-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Peering` \nType: `peerings` \nAPI Version: `2020-01-01-preview`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/linkedServices` \nAPI Version: `2019-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000ce4", + "sortText": "00000c8d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Peering/peerings@2020-01-01-preview'" + "newText": "'Microsoft.OperationalInsights/workspaces/linkedServices@2019-08-01-preview'" } }, { - "label": "'Microsoft.Peering/peerings@2020-04-01'", + "label": "'Microsoft.OperationalInsights/workspaces/linkedServices@2020-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Peering` \nType: `peerings` \nAPI Version: `2020-04-01`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/linkedServices` \nAPI Version: `2020-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000ce3", + "sortText": "00000c8c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Peering/peerings@2020-04-01'" + "newText": "'Microsoft.OperationalInsights/workspaces/linkedServices@2020-03-01-preview'" } }, { - "label": "'Microsoft.Peering/peerings@2020-10-01'", + "label": "'Microsoft.OperationalInsights/workspaces/linkedServices@2020-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Peering` \nType: `peerings` \nAPI Version: `2020-10-01`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/linkedServices` \nAPI Version: `2020-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000ce2", + "sortText": "00000c8b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Peering/peerings@2020-10-01'" + "newText": "'Microsoft.OperationalInsights/workspaces/linkedServices@2020-08-01'" } }, { - "label": "'Microsoft.PolicyInsights/remediations@2018-07-01-preview'", + "label": "'Microsoft.OperationalInsights/workspaces/linkedStorageAccounts@2019-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.PolicyInsights` \nType: `remediations` \nAPI Version: `2018-07-01-preview`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/linkedStorageAccounts` \nAPI Version: `2019-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000cf8", + "sortText": "00000c91", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.PolicyInsights/remediations@2018-07-01-preview'" + "newText": "'Microsoft.OperationalInsights/workspaces/linkedStorageAccounts@2019-08-01-preview'" } }, { - "label": "'Microsoft.PolicyInsights/remediations@2019-07-01'", + "label": "'Microsoft.OperationalInsights/workspaces/linkedStorageAccounts@2020-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.PolicyInsights` \nType: `remediations` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/linkedStorageAccounts` \nAPI Version: `2020-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000cf7", + "sortText": "00000c90", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.PolicyInsights/remediations@2019-07-01'" + "newText": "'Microsoft.OperationalInsights/workspaces/linkedStorageAccounts@2020-03-01-preview'" } }, { - "label": "'Microsoft.Portal/dashboards@2015-08-01-preview'", + "label": "'Microsoft.OperationalInsights/workspaces/linkedStorageAccounts@2020-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Portal` \nType: `dashboards` \nAPI Version: `2015-08-01-preview`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/linkedStorageAccounts` \nAPI Version: `2020-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cfc", + "sortText": "00000c8f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Portal/dashboards@2015-08-01-preview'" + "newText": "'Microsoft.OperationalInsights/workspaces/linkedStorageAccounts@2020-08-01'" } }, { - "label": "'Microsoft.Portal/dashboards@2018-10-01-preview'", + "label": "'Microsoft.OperationalInsights/workspaces/savedSearches@2015-03-20'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Portal` \nType: `dashboards` \nAPI Version: `2018-10-01-preview`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/savedSearches` \nAPI Version: `2015-03-20`" }, "deprecated": false, "preselect": false, - "sortText": "00000cfb", + "sortText": "00000c94", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Portal/dashboards@2018-10-01-preview'" + "newText": "'Microsoft.OperationalInsights/workspaces/savedSearches@2015-03-20'" } }, { - "label": "'Microsoft.Portal/dashboards@2019-01-01-preview'", + "label": "'Microsoft.OperationalInsights/workspaces/savedSearches@2020-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Portal` \nType: `dashboards` \nAPI Version: `2019-01-01-preview`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/savedSearches` \nAPI Version: `2020-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000cfa", + "sortText": "00000c93", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Portal/dashboards@2019-01-01-preview'" + "newText": "'Microsoft.OperationalInsights/workspaces/savedSearches@2020-03-01-preview'" } }, { - "label": "'Microsoft.Portal/dashboards@2020-09-01-preview'", + "label": "'Microsoft.OperationalInsights/workspaces/savedSearches@2020-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Portal` \nType: `dashboards` \nAPI Version: `2020-09-01-preview`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/savedSearches` \nAPI Version: `2020-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cf9", + "sortText": "00000c92", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Portal/dashboards@2020-09-01-preview'" + "newText": "'Microsoft.OperationalInsights/workspaces/savedSearches@2020-08-01'" } }, { - "label": "'Microsoft.Portal/tenantConfigurations@2019-01-01-preview'", + "label": "'Microsoft.OperationalInsights/workspaces/storageInsightConfigs@2015-03-20'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Portal` \nType: `tenantConfigurations` \nAPI Version: `2019-01-01-preview`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/storageInsightConfigs` \nAPI Version: `2015-03-20`" }, "deprecated": false, "preselect": false, - "sortText": "00000cfe", + "sortText": "00000c97", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Portal/tenantConfigurations@2019-01-01-preview'" + "newText": "'Microsoft.OperationalInsights/workspaces/storageInsightConfigs@2015-03-20'" } }, { - "label": "'Microsoft.Portal/tenantConfigurations@2020-09-01-preview'", + "label": "'Microsoft.OperationalInsights/workspaces/storageInsightConfigs@2020-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Portal` \nType: `tenantConfigurations` \nAPI Version: `2020-09-01-preview`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/storageInsightConfigs` \nAPI Version: `2020-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000cfd", + "sortText": "00000c96", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Portal/tenantConfigurations@2020-09-01-preview'" + "newText": "'Microsoft.OperationalInsights/workspaces/storageInsightConfigs@2020-03-01-preview'" } }, { - "label": "'Microsoft.PowerBI/workspaceCollections@2016-01-29'", + "label": "'Microsoft.OperationalInsights/workspaces/storageInsightConfigs@2020-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.PowerBI` \nType: `workspaceCollections` \nAPI Version: `2016-01-29`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces/storageInsightConfigs` \nAPI Version: `2020-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000cff", + "sortText": "00000c95", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.PowerBI/workspaceCollections@2016-01-29'" + "newText": "'Microsoft.OperationalInsights/workspaces/storageInsightConfigs@2020-08-01'" } }, { - "label": "'Microsoft.PowerBIDedicated/capacities@2017-10-01'", + "label": "'Microsoft.OperationalInsights/workspaces@2015-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.PowerBIDedicated` \nType: `capacities` \nAPI Version: `2017-10-01`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces` \nAPI Version: `2015-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d00", + "sortText": "00000c84", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.PowerBIDedicated/capacities@2017-10-01'" + "newText": "'Microsoft.OperationalInsights/workspaces@2015-11-01-preview'" } }, { - "label": "'Microsoft.PowerPlatform/enterprisePolicies/privateEndpointConnections@2020-10-30-preview'", + "label": "'Microsoft.OperationalInsights/workspaces@2020-03-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.PowerPlatform` \nType: `enterprisePolicies/privateEndpointConnections` \nAPI Version: `2020-10-30-preview`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces` \nAPI Version: `2020-03-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d02", + "sortText": "00000c83", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.PowerPlatform/enterprisePolicies/privateEndpointConnections@2020-10-30-preview'" + "newText": "'Microsoft.OperationalInsights/workspaces@2020-03-01-preview'" } }, { - "label": "'Microsoft.PowerPlatform/enterprisePolicies@2020-10-30-preview'", + "label": "'Microsoft.OperationalInsights/workspaces@2020-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.PowerPlatform` \nType: `enterprisePolicies` \nAPI Version: `2020-10-30-preview`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces` \nAPI Version: `2020-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d01", + "sortText": "00000c82", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.PowerPlatform/enterprisePolicies@2020-10-30-preview'" + "newText": "'Microsoft.OperationalInsights/workspaces@2020-08-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/backupFabrics/backupProtectionIntent@2017-07-01'", + "label": "'Microsoft.OperationalInsights/workspaces@2020-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/backupFabrics/backupProtectionIntent` \nAPI Version: `2017-07-01`" + "value": "Namespace: `Microsoft.OperationalInsights` \nType: `workspaces` \nAPI Version: `2020-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d05", + "sortText": "00000c81", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/backupFabrics/backupProtectionIntent@2017-07-01'" + "newText": "'Microsoft.OperationalInsights/workspaces@2020-10-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems@2016-06-01'", + "label": "'Microsoft.OperationsManagement/ManagementConfigurations@2015-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/backupFabrics/protectionContainers/protectedItems` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.OperationsManagement` \nType: `ManagementConfigurations` \nAPI Version: `2015-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d09", + "sortText": "00000c98", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems@2016-06-01'" + "newText": "'Microsoft.OperationsManagement/ManagementConfigurations@2015-11-01-preview'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems@2019-05-13'", + "label": "'Microsoft.OperationsManagement/solutions@2015-11-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/backupFabrics/protectionContainers/protectedItems` \nAPI Version: `2019-05-13`" + "value": "Namespace: `Microsoft.OperationsManagement` \nType: `solutions` \nAPI Version: `2015-11-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d08", + "sortText": "00000c99", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems@2019-05-13'" + "newText": "'Microsoft.OperationsManagement/solutions@2015-11-01-preview'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems@2019-06-15'", + "label": "'Microsoft.Peering/peeringServices/prefixes@2019-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/backupFabrics/protectionContainers/protectedItems` \nAPI Version: `2019-06-15`" + "value": "Namespace: `Microsoft.Peering` \nType: `peeringServices/prefixes` \nAPI Version: `2019-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d07", + "sortText": "00000cae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems@2019-06-15'" + "newText": "'Microsoft.Peering/peeringServices/prefixes@2019-08-01-preview'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers@2016-12-01'", + "label": "'Microsoft.Peering/peeringServices/prefixes@2019-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/backupFabrics/protectionContainers` \nAPI Version: `2016-12-01`" + "value": "Namespace: `Microsoft.Peering` \nType: `peeringServices/prefixes` \nAPI Version: `2019-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d06", + "sortText": "00000cad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers@2016-12-01'" + "newText": "'Microsoft.Peering/peeringServices/prefixes@2019-09-01-preview'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/backupPolicies@2016-06-01'", + "label": "'Microsoft.Peering/peeringServices/prefixes@2020-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/backupPolicies` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Peering` \nType: `peeringServices/prefixes` \nAPI Version: `2020-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d0c", + "sortText": "00000cac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/backupPolicies@2016-06-01'" + "newText": "'Microsoft.Peering/peeringServices/prefixes@2020-01-01-preview'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/backupPolicies@2019-05-13'", + "label": "'Microsoft.Peering/peeringServices/prefixes@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/backupPolicies` \nAPI Version: `2019-05-13`" + "value": "Namespace: `Microsoft.Peering` \nType: `peeringServices/prefixes` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d0b", + "sortText": "00000cab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/backupPolicies@2019-05-13'" + "newText": "'Microsoft.Peering/peeringServices/prefixes@2020-04-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/backupPolicies@2019-06-15'", + "label": "'Microsoft.Peering/peeringServices/prefixes@2020-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/backupPolicies` \nAPI Version: `2019-06-15`" + "value": "Namespace: `Microsoft.Peering` \nType: `peeringServices/prefixes` \nAPI Version: `2020-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d0a", + "sortText": "00000caa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/backupPolicies@2019-06-15'" + "newText": "'Microsoft.Peering/peeringServices/prefixes@2020-10-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/backupconfig@2019-06-15'", + "label": "'Microsoft.Peering/peeringServices@2019-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/backupconfig` \nAPI Version: `2019-06-15`" + "value": "Namespace: `Microsoft.Peering` \nType: `peeringServices` \nAPI Version: `2019-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d04", + "sortText": "00000ca9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/backupconfig@2019-06-15'" + "newText": "'Microsoft.Peering/peeringServices@2019-08-01-preview'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/backupstorageconfig@2016-12-01'", + "label": "'Microsoft.Peering/peeringServices@2019-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/backupstorageconfig` \nAPI Version: `2016-12-01`" + "value": "Namespace: `Microsoft.Peering` \nType: `peeringServices` \nAPI Version: `2019-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d0e", + "sortText": "00000ca8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/backupstorageconfig@2016-12-01'" + "newText": "'Microsoft.Peering/peeringServices@2019-09-01-preview'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/backupstorageconfig@2018-12-20'", + "label": "'Microsoft.Peering/peeringServices@2020-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/backupstorageconfig` \nAPI Version: `2018-12-20`" + "value": "Namespace: `Microsoft.Peering` \nType: `peeringServices` \nAPI Version: `2020-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d0d", + "sortText": "00000ca7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/backupstorageconfig@2018-12-20'" + "newText": "'Microsoft.Peering/peeringServices@2020-01-01-preview'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/certificates@2016-06-01'", + "label": "'Microsoft.Peering/peeringServices@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/certificates` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Peering` \nType: `peeringServices` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d0f", + "sortText": "00000ca6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/certificates@2016-06-01'" + "newText": "'Microsoft.Peering/peeringServices@2020-04-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/extendedInformation@2016-06-01'", + "label": "'Microsoft.Peering/peeringServices@2020-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/extendedInformation` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.Peering` \nType: `peeringServices` \nAPI Version: `2020-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d10", + "sortText": "00000ca5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/extendedInformation@2016-06-01'" + "newText": "'Microsoft.Peering/peeringServices@2020-10-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/privateEndpointConnections@2020-02-02'", + "label": "'Microsoft.Peering/peerings/registeredAsns@2020-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/privateEndpointConnections` \nAPI Version: `2020-02-02`" + "value": "Namespace: `Microsoft.Peering` \nType: `peerings/registeredAsns` \nAPI Version: `2020-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d11", + "sortText": "00000ca1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/privateEndpointConnections@2020-02-02'" + "newText": "'Microsoft.Peering/peerings/registeredAsns@2020-01-01-preview'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationAlertSettings@2016-08-10'", + "label": "'Microsoft.Peering/peerings/registeredAsns@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationAlertSettings` \nAPI Version: `2016-08-10`" + "value": "Namespace: `Microsoft.Peering` \nType: `peerings/registeredAsns` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d14", + "sortText": "00000ca0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationAlertSettings@2016-08-10'" + "newText": "'Microsoft.Peering/peerings/registeredAsns@2020-04-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationAlertSettings@2018-01-10'", + "label": "'Microsoft.Peering/peerings/registeredAsns@2020-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationAlertSettings` \nAPI Version: `2018-01-10`" + "value": "Namespace: `Microsoft.Peering` \nType: `peerings/registeredAsns` \nAPI Version: `2020-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d13", + "sortText": "00000c9f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationAlertSettings@2018-01-10'" + "newText": "'Microsoft.Peering/peerings/registeredAsns@2020-10-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationAlertSettings@2018-07-10'", + "label": "'Microsoft.Peering/peerings/registeredPrefixes@2020-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationAlertSettings` \nAPI Version: `2018-07-10`" + "value": "Namespace: `Microsoft.Peering` \nType: `peerings/registeredPrefixes` \nAPI Version: `2020-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d12", + "sortText": "00000ca4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationAlertSettings@2018-07-10'" + "newText": "'Microsoft.Peering/peerings/registeredPrefixes@2020-01-01-preview'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings@2016-08-10'", + "label": "'Microsoft.Peering/peerings/registeredPrefixes@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings` \nAPI Version: `2016-08-10`" + "value": "Namespace: `Microsoft.Peering` \nType: `peerings/registeredPrefixes` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d1a", + "sortText": "00000ca3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings@2016-08-10'" + "newText": "'Microsoft.Peering/peerings/registeredPrefixes@2020-04-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings@2018-01-10'", + "label": "'Microsoft.Peering/peerings/registeredPrefixes@2020-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings` \nAPI Version: `2018-01-10`" + "value": "Namespace: `Microsoft.Peering` \nType: `peerings/registeredPrefixes` \nAPI Version: `2020-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d19", + "sortText": "00000ca2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings@2018-01-10'" + "newText": "'Microsoft.Peering/peerings/registeredPrefixes@2020-10-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings@2018-07-10'", + "label": "'Microsoft.Peering/peerings@2019-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings` \nAPI Version: `2018-07-10`" + "value": "Namespace: `Microsoft.Peering` \nType: `peerings` \nAPI Version: `2019-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d18", + "sortText": "00000c9e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings@2018-07-10'" + "newText": "'Microsoft.Peering/peerings@2019-08-01-preview'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems@2018-01-10'", + "label": "'Microsoft.Peering/peerings@2019-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems` \nAPI Version: `2018-01-10`" + "value": "Namespace: `Microsoft.Peering` \nType: `peerings` \nAPI Version: `2019-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d1f", + "sortText": "00000c9d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems@2018-01-10'" + "newText": "'Microsoft.Peering/peerings@2019-09-01-preview'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems@2018-07-10'", + "label": "'Microsoft.Peering/peerings@2020-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems` \nAPI Version: `2018-07-10`" + "value": "Namespace: `Microsoft.Peering` \nType: `peerings` \nAPI Version: `2020-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d1e", + "sortText": "00000c9c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems@2018-07-10'" + "newText": "'Microsoft.Peering/peerings@2020-01-01-preview'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems@2016-08-10'", + "label": "'Microsoft.Peering/peerings@2020-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems` \nAPI Version: `2016-08-10`" + "value": "Namespace: `Microsoft.Peering` \nType: `peerings` \nAPI Version: `2020-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d22", + "sortText": "00000c9b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems@2016-08-10'" + "newText": "'Microsoft.Peering/peerings@2020-04-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems@2018-01-10'", + "label": "'Microsoft.Peering/peerings@2020-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems` \nAPI Version: `2018-01-10`" + "value": "Namespace: `Microsoft.Peering` \nType: `peerings` \nAPI Version: `2020-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d21", + "sortText": "00000c9a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems@2018-01-10'" + "newText": "'Microsoft.Peering/peerings@2020-10-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems@2018-07-10'", + "label": "'Microsoft.PolicyInsights/remediations@2018-07-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems` \nAPI Version: `2018-07-10`" + "value": "Namespace: `Microsoft.PolicyInsights` \nType: `remediations` \nAPI Version: `2018-07-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d20", + "sortText": "00000cb0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems@2018-07-10'" + "newText": "'Microsoft.PolicyInsights/remediations@2018-07-01-preview'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings@2016-08-10'", + "label": "'Microsoft.PolicyInsights/remediations@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings` \nAPI Version: `2016-08-10`" + "value": "Namespace: `Microsoft.PolicyInsights` \nType: `remediations` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d25", + "sortText": "00000caf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings@2016-08-10'" + "newText": "'Microsoft.PolicyInsights/remediations@2019-07-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings@2018-01-10'", + "label": "'Microsoft.Portal/dashboards@2015-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings` \nAPI Version: `2018-01-10`" + "value": "Namespace: `Microsoft.Portal` \nType: `dashboards` \nAPI Version: `2015-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d24", + "sortText": "00000cb4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings@2018-01-10'" + "newText": "'Microsoft.Portal/dashboards@2015-08-01-preview'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings@2018-07-10'", + "label": "'Microsoft.Portal/dashboards@2018-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings` \nAPI Version: `2018-07-10`" + "value": "Namespace: `Microsoft.Portal` \nType: `dashboards` \nAPI Version: `2018-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d23", + "sortText": "00000cb3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings@2018-07-10'" + "newText": "'Microsoft.Portal/dashboards@2018-10-01-preview'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers@2016-08-10'", + "label": "'Microsoft.Portal/dashboards@2019-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationProtectionContainers` \nAPI Version: `2016-08-10`" + "value": "Namespace: `Microsoft.Portal` \nType: `dashboards` \nAPI Version: `2019-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d1d", + "sortText": "00000cb2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers@2016-08-10'" + "newText": "'Microsoft.Portal/dashboards@2019-01-01-preview'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers@2018-01-10'", + "label": "'Microsoft.Portal/dashboards@2020-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationProtectionContainers` \nAPI Version: `2018-01-10`" + "value": "Namespace: `Microsoft.Portal` \nType: `dashboards` \nAPI Version: `2020-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d1c", + "sortText": "00000cb1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers@2018-01-10'" + "newText": "'Microsoft.Portal/dashboards@2020-09-01-preview'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers@2018-07-10'", + "label": "'Microsoft.PowerBI/workspaceCollections@2016-01-29'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationProtectionContainers` \nAPI Version: `2018-07-10`" + "value": "Namespace: `Microsoft.PowerBI` \nType: `workspaceCollections` \nAPI Version: `2016-01-29`" }, "deprecated": false, "preselect": false, - "sortText": "00000d1b", + "sortText": "00000cb5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers@2018-07-10'" + "newText": "'Microsoft.PowerBI/workspaceCollections@2016-01-29'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders@2018-01-10'", + "label": "'Microsoft.PowerBIDedicated/capacities@2017-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationRecoveryServicesProviders` \nAPI Version: `2018-01-10`" + "value": "Namespace: `Microsoft.PowerBIDedicated` \nType: `capacities` \nAPI Version: `2017-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d27", + "sortText": "00000cb6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders@2018-01-10'" + "newText": "'Microsoft.PowerBIDedicated/capacities@2017-10-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders@2018-07-10'", + "label": "'Microsoft.PowerPlatform/enterprisePolicies/privateEndpointConnections@2020-10-30-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationRecoveryServicesProviders` \nAPI Version: `2018-07-10`" + "value": "Namespace: `Microsoft.PowerPlatform` \nType: `enterprisePolicies/privateEndpointConnections` \nAPI Version: `2020-10-30-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d26", + "sortText": "00000cb8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders@2018-07-10'" + "newText": "'Microsoft.PowerPlatform/enterprisePolicies/privateEndpointConnections@2020-10-30-preview'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings@2016-08-10'", + "label": "'Microsoft.PowerPlatform/enterprisePolicies@2020-10-30-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings` \nAPI Version: `2016-08-10`" + "value": "Namespace: `Microsoft.PowerPlatform` \nType: `enterprisePolicies` \nAPI Version: `2020-10-30-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d2a", + "sortText": "00000cb7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings@2016-08-10'" + "newText": "'Microsoft.PowerPlatform/enterprisePolicies@2020-10-30-preview'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings@2018-01-10'", + "label": "'Microsoft.Purview/accounts/privateEndpointConnections@2020-12-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings` \nAPI Version: `2018-01-10`" + "value": "Namespace: `Microsoft.Purview` \nType: `accounts/privateEndpointConnections` \nAPI Version: `2020-12-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d29", + "sortText": "00000cba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings@2018-01-10'" + "newText": "'Microsoft.Purview/accounts/privateEndpointConnections@2020-12-01-preview'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings@2018-07-10'", + "label": "'Microsoft.Purview/accounts@2020-12-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings` \nAPI Version: `2018-07-10`" + "value": "Namespace: `Microsoft.Purview` \nType: `accounts` \nAPI Version: `2020-12-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d28", + "sortText": "00000cb9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings@2018-07-10'" + "newText": "'Microsoft.Purview/accounts@2020-12-01-preview'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters@2016-08-10'", + "label": "'Microsoft.RecoveryServices/vaults/backupEncryptionConfigs@2020-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationvCenters` \nAPI Version: `2016-08-10`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/backupEncryptionConfigs` \nAPI Version: `2020-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d2d", + "sortText": "00000cbe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters@2016-08-10'" + "newText": "'Microsoft.RecoveryServices/vaults/backupEncryptionConfigs@2020-12-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters@2018-01-10'", + "label": "'Microsoft.RecoveryServices/vaults/backupFabrics/backupProtectionIntent@2017-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationvCenters` \nAPI Version: `2018-01-10`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/backupFabrics/backupProtectionIntent` \nAPI Version: `2017-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d2c", + "sortText": "00000cbf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters@2018-01-10'" + "newText": "'Microsoft.RecoveryServices/vaults/backupFabrics/backupProtectionIntent@2017-07-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters@2018-07-10'", + "label": "'Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationvCenters` \nAPI Version: `2018-07-10`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/backupFabrics/protectionContainers/protectedItems` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d2b", + "sortText": "00000cc5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters@2018-07-10'" + "newText": "'Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems@2016-06-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics@2016-08-10'", + "label": "'Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems@2019-05-13'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics` \nAPI Version: `2016-08-10`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/backupFabrics/protectionContainers/protectedItems` \nAPI Version: `2019-05-13`" }, "deprecated": false, "preselect": false, - "sortText": "00000d17", + "sortText": "00000cc4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics@2016-08-10'" + "newText": "'Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems@2019-05-13'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics@2018-01-10'", + "label": "'Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems@2019-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics` \nAPI Version: `2018-01-10`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/backupFabrics/protectionContainers/protectedItems` \nAPI Version: `2019-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000d16", + "sortText": "00000cc3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics@2018-01-10'" + "newText": "'Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems@2019-06-15'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics@2018-07-10'", + "label": "'Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems@2020-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics` \nAPI Version: `2018-07-10`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/backupFabrics/protectionContainers/protectedItems` \nAPI Version: `2020-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d15", + "sortText": "00000cc2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics@2018-07-10'" + "newText": "'Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems@2020-12-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationPolicies@2016-08-10'", + "label": "'Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers@2016-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationPolicies` \nAPI Version: `2016-08-10`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/backupFabrics/protectionContainers` \nAPI Version: `2016-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d30", + "sortText": "00000cc1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationPolicies@2016-08-10'" + "newText": "'Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers@2016-12-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationPolicies@2018-01-10'", + "label": "'Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers@2020-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationPolicies` \nAPI Version: `2018-01-10`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/backupFabrics/protectionContainers` \nAPI Version: `2020-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d2f", + "sortText": "00000cc0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationPolicies@2018-01-10'" + "newText": "'Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers@2020-12-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationPolicies@2018-07-10'", + "label": "'Microsoft.RecoveryServices/vaults/backupPolicies@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationPolicies` \nAPI Version: `2018-07-10`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/backupPolicies` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d2e", + "sortText": "00000cc9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationPolicies@2018-07-10'" + "newText": "'Microsoft.RecoveryServices/vaults/backupPolicies@2016-06-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationProtectionIntents@2018-07-10'", + "label": "'Microsoft.RecoveryServices/vaults/backupPolicies@2019-05-13'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationProtectionIntents` \nAPI Version: `2018-07-10`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/backupPolicies` \nAPI Version: `2019-05-13`" }, "deprecated": false, "preselect": false, - "sortText": "00000d31", + "sortText": "00000cc8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationProtectionIntents@2018-07-10'" + "newText": "'Microsoft.RecoveryServices/vaults/backupPolicies@2019-05-13'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationRecoveryPlans@2016-08-10'", + "label": "'Microsoft.RecoveryServices/vaults/backupPolicies@2019-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationRecoveryPlans` \nAPI Version: `2016-08-10`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/backupPolicies` \nAPI Version: `2019-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000d34", + "sortText": "00000cc7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationRecoveryPlans@2016-08-10'" + "newText": "'Microsoft.RecoveryServices/vaults/backupPolicies@2019-06-15'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationRecoveryPlans@2018-01-10'", + "label": "'Microsoft.RecoveryServices/vaults/backupPolicies@2020-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationRecoveryPlans` \nAPI Version: `2018-01-10`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/backupPolicies` \nAPI Version: `2020-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d33", + "sortText": "00000cc6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationRecoveryPlans@2018-01-10'" + "newText": "'Microsoft.RecoveryServices/vaults/backupPolicies@2020-12-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationRecoveryPlans@2018-07-10'", + "label": "'Microsoft.RecoveryServices/vaults/backupconfig@2019-06-15'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationRecoveryPlans` \nAPI Version: `2018-07-10`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/backupconfig` \nAPI Version: `2019-06-15`" }, "deprecated": false, "preselect": false, - "sortText": "00000d32", + "sortText": "00000cbd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationRecoveryPlans@2018-07-10'" + "newText": "'Microsoft.RecoveryServices/vaults/backupconfig@2019-06-15'" } }, { - "label": "'Microsoft.RecoveryServices/vaults/replicationVaultSettings@2018-07-10'", + "label": "'Microsoft.RecoveryServices/vaults/backupconfig@2020-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationVaultSettings` \nAPI Version: `2018-07-10`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/backupconfig` \nAPI Version: `2020-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d35", + "sortText": "00000cbc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults/replicationVaultSettings@2018-07-10'" + "newText": "'Microsoft.RecoveryServices/vaults/backupconfig@2020-12-01'" } }, { - "label": "'Microsoft.RecoveryServices/vaults@2016-06-01'", + "label": "'Microsoft.RecoveryServices/vaults/backupstorageconfig@2016-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults` \nAPI Version: `2016-06-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/backupstorageconfig` \nAPI Version: `2016-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d03", + "sortText": "00000ccb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RecoveryServices/vaults@2016-06-01'" + "newText": "'Microsoft.RecoveryServices/vaults/backupstorageconfig@2016-12-01'" } }, { - "label": "'Microsoft.RedHatOpenShift/openShiftClusters@2020-04-30'", + "label": "'Microsoft.RecoveryServices/vaults/backupstorageconfig@2018-12-20'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.RedHatOpenShift` \nType: `openShiftClusters` \nAPI Version: `2020-04-30`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/backupstorageconfig` \nAPI Version: `2018-12-20`" }, "deprecated": false, "preselect": false, - "sortText": "00000d36", + "sortText": "00000cca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.RedHatOpenShift/openShiftClusters@2020-04-30'" + "newText": "'Microsoft.RecoveryServices/vaults/backupstorageconfig@2018-12-20'" } }, { - "label": "'Microsoft.Relay/namespaces/AuthorizationRules@2016-07-01'", + "label": "'Microsoft.RecoveryServices/vaults/certificates@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/AuthorizationRules` \nAPI Version: `2016-07-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/certificates` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d3b", + "sortText": "00000ccc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces/AuthorizationRules@2016-07-01'" + "newText": "'Microsoft.RecoveryServices/vaults/certificates@2016-06-01'" } }, { - "label": "'Microsoft.Relay/namespaces/HybridConnections/authorizationRules@2016-07-01'", + "label": "'Microsoft.RecoveryServices/vaults/extendedInformation@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/HybridConnections/authorizationRules` \nAPI Version: `2016-07-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/extendedInformation` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d3f", + "sortText": "00000ccd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces/HybridConnections/authorizationRules@2016-07-01'" + "newText": "'Microsoft.RecoveryServices/vaults/extendedInformation@2016-06-01'" } }, { - "label": "'Microsoft.Relay/namespaces/HybridConnections@2016-07-01'", + "label": "'Microsoft.RecoveryServices/vaults/privateEndpointConnections@2020-02-02'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/HybridConnections` \nAPI Version: `2016-07-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/privateEndpointConnections` \nAPI Version: `2020-02-02`" }, "deprecated": false, "preselect": false, - "sortText": "00000d3d", + "sortText": "00000ccf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces/HybridConnections@2016-07-01'" + "newText": "'Microsoft.RecoveryServices/vaults/privateEndpointConnections@2020-02-02'" } }, { - "label": "'Microsoft.Relay/namespaces/WcfRelays/authorizationRules@2016-07-01'", + "label": "'Microsoft.RecoveryServices/vaults/privateEndpointConnections@2020-12-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/WcfRelays/authorizationRules` \nAPI Version: `2016-07-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/privateEndpointConnections` \nAPI Version: `2020-12-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d44", + "sortText": "00000cce", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces/WcfRelays/authorizationRules@2016-07-01'" + "newText": "'Microsoft.RecoveryServices/vaults/privateEndpointConnections@2020-12-01'" } }, { - "label": "'Microsoft.Relay/namespaces/WcfRelays@2016-07-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationAlertSettings@2016-08-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/WcfRelays` \nAPI Version: `2016-07-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationAlertSettings` \nAPI Version: `2016-08-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d42", + "sortText": "00000cd2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces/WcfRelays@2016-07-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationAlertSettings@2016-08-10'" } }, { - "label": "'Microsoft.Relay/namespaces/authorizationRules@2017-04-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationAlertSettings@2018-01-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/authorizationRules` \nAPI Version: `2017-04-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationAlertSettings` \nAPI Version: `2018-01-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d3a", + "sortText": "00000cd1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces/authorizationRules@2017-04-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationAlertSettings@2018-01-10'" } }, { - "label": "'Microsoft.Relay/namespaces/hybridConnections/authorizationRules@2017-04-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationAlertSettings@2018-07-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/hybridConnections/authorizationRules` \nAPI Version: `2017-04-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationAlertSettings` \nAPI Version: `2018-07-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d3e", + "sortText": "00000cd0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces/hybridConnections/authorizationRules@2017-04-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationAlertSettings@2018-07-10'" } }, { - "label": "'Microsoft.Relay/namespaces/hybridConnections@2017-04-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings@2016-08-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/hybridConnections` \nAPI Version: `2017-04-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings` \nAPI Version: `2016-08-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d3c", + "sortText": "00000cd8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces/hybridConnections@2017-04-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings@2016-08-10'" } }, { - "label": "'Microsoft.Relay/namespaces/privateEndpointConnections@2018-01-01-preview'", + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings@2018-01-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/privateEndpointConnections` \nAPI Version: `2018-01-01-preview`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings` \nAPI Version: `2018-01-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d40", + "sortText": "00000cd7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces/privateEndpointConnections@2018-01-01-preview'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings@2018-01-10'" } }, { - "label": "'Microsoft.Relay/namespaces/wcfRelays/authorizationRules@2017-04-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings@2018-07-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/wcfRelays/authorizationRules` \nAPI Version: `2017-04-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings` \nAPI Version: `2018-07-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d43", + "sortText": "00000cd6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces/wcfRelays/authorizationRules@2017-04-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings@2018-07-10'" } }, { - "label": "'Microsoft.Relay/namespaces/wcfRelays@2017-04-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems@2018-01-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/wcfRelays` \nAPI Version: `2017-04-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems` \nAPI Version: `2018-01-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d41", + "sortText": "00000cdd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces/wcfRelays@2017-04-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems@2018-01-10'" } }, { - "label": "'Microsoft.Relay/namespaces@2016-07-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems@2018-07-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces` \nAPI Version: `2016-07-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems` \nAPI Version: `2018-07-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d39", + "sortText": "00000cdc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces@2016-07-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationMigrationItems@2018-07-10'" } }, { - "label": "'Microsoft.Relay/namespaces@2017-04-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems@2016-08-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces` \nAPI Version: `2017-04-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems` \nAPI Version: `2016-08-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d38", + "sortText": "00000ce0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces@2017-04-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems@2016-08-10'" } }, { - "label": "'Microsoft.Relay/namespaces@2018-01-01-preview'", + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems@2018-01-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Relay` \nType: `namespaces` \nAPI Version: `2018-01-01-preview`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems` \nAPI Version: `2018-01-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d37", + "sortText": "00000cdf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Relay/namespaces@2018-01-01-preview'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems@2018-01-10'" } }, { - "label": "'Microsoft.ResourceGraph/queries@2018-09-01-preview'", + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems@2018-07-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ResourceGraph` \nType: `queries` \nAPI Version: `2018-09-01-preview`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems` \nAPI Version: `2018-07-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d45", + "sortText": "00000cde", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ResourceGraph/queries@2018-09-01-preview'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems@2018-07-10'" } }, { - "label": "'Microsoft.Resources/deploymentScripts@2019-10-01-preview'", + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings@2016-08-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deploymentScripts` \nAPI Version: `2019-10-01-preview`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings` \nAPI Version: `2016-08-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d55", + "sortText": "00000ce3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deploymentScripts@2019-10-01-preview'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings@2016-08-10'" } }, { - "label": "'Microsoft.Resources/deploymentScripts@2020-10-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings@2018-01-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deploymentScripts` \nAPI Version: `2020-10-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings` \nAPI Version: `2018-01-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d54", + "sortText": "00000ce2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deploymentScripts@2020-10-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings@2018-01-10'" } }, { - "label": "'Microsoft.Resources/deployments@2015-11-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings@2018-07-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2015-11-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings` \nAPI Version: `2018-07-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d53", + "sortText": "00000ce1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2015-11-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings@2018-07-10'" } }, { - "label": "'Microsoft.Resources/deployments@2016-02-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers@2016-08-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2016-02-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationProtectionContainers` \nAPI Version: `2016-08-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d52", + "sortText": "00000cdb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2016-02-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers@2016-08-10'" } }, { - "label": "'Microsoft.Resources/deployments@2016-07-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers@2018-01-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2016-07-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationProtectionContainers` \nAPI Version: `2018-01-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d51", + "sortText": "00000cda", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2016-07-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers@2018-01-10'" } }, { - "label": "'Microsoft.Resources/deployments@2016-09-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers@2018-07-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2016-09-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationProtectionContainers` \nAPI Version: `2018-07-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d50", + "sortText": "00000cd9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2016-09-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers@2018-07-10'" } }, { - "label": "'Microsoft.Resources/deployments@2017-05-10'", + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders@2018-01-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2017-05-10`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationRecoveryServicesProviders` \nAPI Version: `2018-01-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d4f", + "sortText": "00000ce5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2017-05-10'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders@2018-01-10'" } }, { - "label": "'Microsoft.Resources/deployments@2018-02-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders@2018-07-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationRecoveryServicesProviders` \nAPI Version: `2018-07-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d4e", + "sortText": "00000ce4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2018-02-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders@2018-07-10'" } }, { - "label": "'Microsoft.Resources/deployments@2018-05-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings@2016-08-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2018-05-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings` \nAPI Version: `2016-08-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d4d", + "sortText": "00000ce8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2018-05-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings@2016-08-10'" } }, { - "label": "'Microsoft.Resources/deployments@2019-03-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings@2018-01-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2019-03-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings` \nAPI Version: `2018-01-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d4c", + "sortText": "00000ce7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2019-03-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings@2018-01-10'" } }, { - "label": "'Microsoft.Resources/deployments@2019-05-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings@2018-07-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2019-05-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings` \nAPI Version: `2018-07-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d4b", + "sortText": "00000ce6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2019-05-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings@2018-07-10'" } }, { - "label": "'Microsoft.Resources/deployments@2019-05-10'", + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters@2016-08-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2019-05-10`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationvCenters` \nAPI Version: `2016-08-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d4a", + "sortText": "00000ceb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2019-05-10'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters@2016-08-10'" } }, { - "label": "'Microsoft.Resources/deployments@2019-07-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters@2018-01-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationvCenters` \nAPI Version: `2018-01-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d49", + "sortText": "00000cea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2019-07-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters@2018-01-10'" } }, { - "label": "'Microsoft.Resources/deployments@2019-08-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters@2018-07-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics/replicationvCenters` \nAPI Version: `2018-07-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d48", + "sortText": "00000ce9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2019-08-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters@2018-07-10'" } }, { - "label": "'Microsoft.Resources/deployments@2019-10-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics@2016-08-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2019-10-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics` \nAPI Version: `2016-08-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d47", + "sortText": "00000cd5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2019-10-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics@2016-08-10'" } }, { - "label": "'Microsoft.Resources/deployments@2020-06-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics@2018-01-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics` \nAPI Version: `2018-01-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d46", + "sortText": "00000cd4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/deployments@2020-06-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics@2018-01-10'" } }, { - "label": "'Microsoft.Resources/resourceGroups@2015-11-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationFabrics@2018-07-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2015-11-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationFabrics` \nAPI Version: `2018-07-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d63", + "sortText": "00000cd3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/resourceGroups@2015-11-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationFabrics@2018-07-10'" } }, { - "label": "'Microsoft.Resources/resourceGroups@2016-02-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationPolicies@2016-08-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2016-02-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationPolicies` \nAPI Version: `2016-08-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d62", + "sortText": "00000cee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/resourceGroups@2016-02-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationPolicies@2016-08-10'" } }, { - "label": "'Microsoft.Resources/resourceGroups@2016-07-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationPolicies@2018-01-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2016-07-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationPolicies` \nAPI Version: `2018-01-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d61", + "sortText": "00000ced", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/resourceGroups@2016-07-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationPolicies@2018-01-10'" } }, { - "label": "'Microsoft.Resources/resourceGroups@2016-09-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationPolicies@2018-07-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2016-09-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationPolicies` \nAPI Version: `2018-07-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d60", + "sortText": "00000cec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/resourceGroups@2016-09-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationPolicies@2018-07-10'" } }, { - "label": "'Microsoft.Resources/resourceGroups@2017-05-10'", + "label": "'Microsoft.RecoveryServices/vaults/replicationProtectionIntents@2018-07-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2017-05-10`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationProtectionIntents` \nAPI Version: `2018-07-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d5f", + "sortText": "00000cef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/resourceGroups@2017-05-10'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationProtectionIntents@2018-07-10'" } }, { - "label": "'Microsoft.Resources/resourceGroups@2018-02-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationRecoveryPlans@2016-08-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationRecoveryPlans` \nAPI Version: `2016-08-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d5e", + "sortText": "00000cf2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/resourceGroups@2018-02-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationRecoveryPlans@2016-08-10'" } }, { - "label": "'Microsoft.Resources/resourceGroups@2018-05-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationRecoveryPlans@2018-01-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2018-05-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationRecoveryPlans` \nAPI Version: `2018-01-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d5d", + "sortText": "00000cf1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/resourceGroups@2018-05-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationRecoveryPlans@2018-01-10'" } }, { - "label": "'Microsoft.Resources/resourceGroups@2019-03-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationRecoveryPlans@2018-07-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2019-03-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationRecoveryPlans` \nAPI Version: `2018-07-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d5c", + "sortText": "00000cf0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/resourceGroups@2019-03-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationRecoveryPlans@2018-07-10'" } }, { - "label": "'Microsoft.Resources/resourceGroups@2019-05-01'", + "label": "'Microsoft.RecoveryServices/vaults/replicationVaultSettings@2018-07-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2019-05-01`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults/replicationVaultSettings` \nAPI Version: `2018-07-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d5b", + "sortText": "00000cf3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/resourceGroups@2019-05-01'" + "newText": "'Microsoft.RecoveryServices/vaults/replicationVaultSettings@2018-07-10'" } }, { - "label": "'Microsoft.Resources/resourceGroups@2019-05-10'", + "label": "'Microsoft.RecoveryServices/vaults@2016-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2019-05-10`" + "value": "Namespace: `Microsoft.RecoveryServices` \nType: `vaults` \nAPI Version: `2016-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d5a", + "sortText": "00000cbb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/resourceGroups@2019-05-10'" + "newText": "'Microsoft.RecoveryServices/vaults@2016-06-01'" } }, { - "label": "'Microsoft.Resources/resourceGroups@2019-07-01'", + "label": "'Microsoft.RedHatOpenShift/openShiftClusters@2020-04-30'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2019-07-01`" + "value": "Namespace: `Microsoft.RedHatOpenShift` \nType: `openShiftClusters` \nAPI Version: `2020-04-30`" }, "deprecated": false, "preselect": false, - "sortText": "00000d59", + "sortText": "00000cf5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/resourceGroups@2019-07-01'" + "newText": "'Microsoft.RedHatOpenShift/openShiftClusters@2020-04-30'" } }, { - "label": "'Microsoft.Resources/resourceGroups@2019-08-01'", + "label": "'Microsoft.RedHatOpenShift/openShiftClusters@2021-01-31-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.RedHatOpenShift` \nType: `openShiftClusters` \nAPI Version: `2021-01-31-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d58", + "sortText": "00000cf4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/resourceGroups@2019-08-01'" + "newText": "'Microsoft.RedHatOpenShift/openShiftClusters@2021-01-31-preview'" } }, { - "label": "'Microsoft.Resources/resourceGroups@2019-10-01'", + "label": "'Microsoft.Relay/namespaces/AuthorizationRules@2016-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2019-10-01`" + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/AuthorizationRules` \nAPI Version: `2016-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d57", + "sortText": "00000cfa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/resourceGroups@2019-10-01'" + "newText": "'Microsoft.Relay/namespaces/AuthorizationRules@2016-07-01'" } }, { - "label": "'Microsoft.Resources/resourceGroups@2020-06-01'", + "label": "'Microsoft.Relay/namespaces/HybridConnections/authorizationRules@2016-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `resourceGroups` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/HybridConnections/authorizationRules` \nAPI Version: `2016-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d56", + "sortText": "00000cfe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/resourceGroups@2020-06-01'" + "newText": "'Microsoft.Relay/namespaces/HybridConnections/authorizationRules@2016-07-01'" } }, { - "label": "'Microsoft.Resources/tags@2019-10-01'", + "label": "'Microsoft.Relay/namespaces/HybridConnections@2016-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `tags` \nAPI Version: `2019-10-01`" + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/HybridConnections` \nAPI Version: `2016-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d65", + "sortText": "00000cfc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/tags@2019-10-01'" + "newText": "'Microsoft.Relay/namespaces/HybridConnections@2016-07-01'" } }, { - "label": "'Microsoft.Resources/tags@2020-06-01'", + "label": "'Microsoft.Relay/namespaces/WcfRelays/authorizationRules@2016-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `tags` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/WcfRelays/authorizationRules` \nAPI Version: `2016-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d64", + "sortText": "00000d03", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/tags@2020-06-01'" + "newText": "'Microsoft.Relay/namespaces/WcfRelays/authorizationRules@2016-07-01'" } }, { - "label": "'Microsoft.Resources/templateSpecs/versions@2019-06-01-preview'", + "label": "'Microsoft.Relay/namespaces/WcfRelays@2016-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `templateSpecs/versions` \nAPI Version: `2019-06-01-preview`" + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/WcfRelays` \nAPI Version: `2016-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d67", + "sortText": "00000d01", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/templateSpecs/versions@2019-06-01-preview'" + "newText": "'Microsoft.Relay/namespaces/WcfRelays@2016-07-01'" } }, { - "label": "'Microsoft.Resources/templateSpecs@2019-06-01-preview'", + "label": "'Microsoft.Relay/namespaces/authorizationRules@2017-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Resources` \nType: `templateSpecs` \nAPI Version: `2019-06-01-preview`" + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/authorizationRules` \nAPI Version: `2017-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d66", + "sortText": "00000cf9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Resources/templateSpecs@2019-06-01-preview'" + "newText": "'Microsoft.Relay/namespaces/authorizationRules@2017-04-01'" } }, { - "label": "'Microsoft.Scheduler/jobCollections/jobs@2014-08-01-preview'", + "label": "'Microsoft.Relay/namespaces/hybridConnections/authorizationRules@2017-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Scheduler` \nType: `jobCollections/jobs` \nAPI Version: `2014-08-01-preview`" + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/hybridConnections/authorizationRules` \nAPI Version: `2017-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d6d", + "sortText": "00000cfd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Scheduler/jobCollections/jobs@2014-08-01-preview'" + "newText": "'Microsoft.Relay/namespaces/hybridConnections/authorizationRules@2017-04-01'" } }, { - "label": "'Microsoft.Scheduler/jobCollections/jobs@2016-01-01'", + "label": "'Microsoft.Relay/namespaces/hybridConnections@2017-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Scheduler` \nType: `jobCollections/jobs` \nAPI Version: `2016-01-01`" + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/hybridConnections` \nAPI Version: `2017-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d6c", + "sortText": "00000cfb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Scheduler/jobCollections/jobs@2016-01-01'" + "newText": "'Microsoft.Relay/namespaces/hybridConnections@2017-04-01'" } }, { - "label": "'Microsoft.Scheduler/jobCollections/jobs@2016-03-01'", + "label": "'Microsoft.Relay/namespaces/privateEndpointConnections@2018-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Scheduler` \nType: `jobCollections/jobs` \nAPI Version: `2016-03-01`" + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/privateEndpointConnections` \nAPI Version: `2018-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d6b", + "sortText": "00000cff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Scheduler/jobCollections/jobs@2016-03-01'" + "newText": "'Microsoft.Relay/namespaces/privateEndpointConnections@2018-01-01-preview'" } }, { - "label": "'Microsoft.Scheduler/jobCollections@2014-08-01-preview'", + "label": "'Microsoft.Relay/namespaces/wcfRelays/authorizationRules@2017-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Scheduler` \nType: `jobCollections` \nAPI Version: `2014-08-01-preview`" + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/wcfRelays/authorizationRules` \nAPI Version: `2017-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d6a", + "sortText": "00000d02", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Scheduler/jobCollections@2014-08-01-preview'" + "newText": "'Microsoft.Relay/namespaces/wcfRelays/authorizationRules@2017-04-01'" } }, { - "label": "'Microsoft.Scheduler/jobCollections@2016-01-01'", + "label": "'Microsoft.Relay/namespaces/wcfRelays@2017-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Scheduler` \nType: `jobCollections` \nAPI Version: `2016-01-01`" + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces/wcfRelays` \nAPI Version: `2017-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d69", + "sortText": "00000d00", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Scheduler/jobCollections@2016-01-01'" + "newText": "'Microsoft.Relay/namespaces/wcfRelays@2017-04-01'" } }, { - "label": "'Microsoft.Scheduler/jobCollections@2016-03-01'", + "label": "'Microsoft.Relay/namespaces@2016-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Scheduler` \nType: `jobCollections` \nAPI Version: `2016-03-01`" + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces` \nAPI Version: `2016-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d68", + "sortText": "00000cf8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Scheduler/jobCollections@2016-03-01'" + "newText": "'Microsoft.Relay/namespaces@2016-07-01'" } }, { - "label": "'Microsoft.Search/searchServices/privateEndpointConnections@2019-10-01-preview'", + "label": "'Microsoft.Relay/namespaces@2017-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Search` \nType: `searchServices/privateEndpointConnections` \nAPI Version: `2019-10-01-preview`" + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces` \nAPI Version: `2017-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d77", + "sortText": "00000cf7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Search/searchServices/privateEndpointConnections@2019-10-01-preview'" + "newText": "'Microsoft.Relay/namespaces@2017-04-01'" } }, { - "label": "'Microsoft.Search/searchServices/privateEndpointConnections@2020-03-13'", + "label": "'Microsoft.Relay/namespaces@2018-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Search` \nType: `searchServices/privateEndpointConnections` \nAPI Version: `2020-03-13`" + "value": "Namespace: `Microsoft.Relay` \nType: `namespaces` \nAPI Version: `2018-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d76", + "sortText": "00000cf6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Search/searchServices/privateEndpointConnections@2020-03-13'" + "newText": "'Microsoft.Relay/namespaces@2018-01-01-preview'" } }, { - "label": "'Microsoft.Search/searchServices/privateEndpointConnections@2020-08-01'", + "label": "'Microsoft.ResourceGraph/queries@2018-09-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Search` \nType: `searchServices/privateEndpointConnections` \nAPI Version: `2020-08-01`" + "value": "Namespace: `Microsoft.ResourceGraph` \nType: `queries` \nAPI Version: `2018-09-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d75", + "sortText": "00000d04", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Search/searchServices/privateEndpointConnections@2020-08-01'" + "newText": "'Microsoft.ResourceGraph/queries@2018-09-01-preview'" } }, { - "label": "'Microsoft.Search/searchServices/privateEndpointConnections@2020-08-01-preview'", + "label": "'Microsoft.Resources/deploymentScripts@2019-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Search` \nType: `searchServices/privateEndpointConnections` \nAPI Version: `2020-08-01-preview`" + "value": "Namespace: `Microsoft.Resources` \nType: `deploymentScripts` \nAPI Version: `2019-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d74", + "sortText": "00000d14", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Search/searchServices/privateEndpointConnections@2020-08-01-preview'" + "newText": "'Microsoft.Resources/deploymentScripts@2019-10-01-preview'" } }, { - "label": "'Microsoft.Search/searchServices/sharedPrivateLinkResources@2020-08-01'", + "label": "'Microsoft.Resources/deploymentScripts@2020-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Search` \nType: `searchServices/sharedPrivateLinkResources` \nAPI Version: `2020-08-01`" + "value": "Namespace: `Microsoft.Resources` \nType: `deploymentScripts` \nAPI Version: `2020-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d79", + "sortText": "00000d13", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Search/searchServices/sharedPrivateLinkResources@2020-08-01'" + "newText": "'Microsoft.Resources/deploymentScripts@2020-10-01'" } }, { - "label": "'Microsoft.Search/searchServices/sharedPrivateLinkResources@2020-08-01-preview'", + "label": "'Microsoft.Resources/deployments@2015-11-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Search` \nType: `searchServices/sharedPrivateLinkResources` \nAPI Version: `2020-08-01-preview`" + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2015-11-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d78", + "sortText": "00000d12", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Search/searchServices/sharedPrivateLinkResources@2020-08-01-preview'" + "newText": "'Microsoft.Resources/deployments@2015-11-01'" } }, { - "label": "'Microsoft.Search/searchServices@2015-02-28'", + "label": "'Microsoft.Resources/deployments@2016-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Search` \nType: `searchServices` \nAPI Version: `2015-02-28`" + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2016-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d73", + "sortText": "00000d11", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Search/searchServices@2015-02-28'" + "newText": "'Microsoft.Resources/deployments@2016-02-01'" } }, { - "label": "'Microsoft.Search/searchServices@2015-08-19'", + "label": "'Microsoft.Resources/deployments@2016-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Search` \nType: `searchServices` \nAPI Version: `2015-08-19`" + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2016-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d72", + "sortText": "00000d10", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Search/searchServices@2015-08-19'" + "newText": "'Microsoft.Resources/deployments@2016-07-01'" } }, { - "label": "'Microsoft.Search/searchServices@2019-10-01-preview'", + "label": "'Microsoft.Resources/deployments@2016-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Search` \nType: `searchServices` \nAPI Version: `2019-10-01-preview`" + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2016-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d71", + "sortText": "00000d0f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Search/searchServices@2019-10-01-preview'" + "newText": "'Microsoft.Resources/deployments@2016-09-01'" } }, { - "label": "'Microsoft.Search/searchServices@2020-03-13'", + "label": "'Microsoft.Resources/deployments@2017-05-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Search` \nType: `searchServices` \nAPI Version: `2020-03-13`" + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2017-05-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d70", + "sortText": "00000d0e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Search/searchServices@2020-03-13'" + "newText": "'Microsoft.Resources/deployments@2017-05-10'" } }, { - "label": "'Microsoft.Search/searchServices@2020-08-01'", + "label": "'Microsoft.Resources/deployments@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Search` \nType: `searchServices` \nAPI Version: `2020-08-01`" + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d6f", + "sortText": "00000d0d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Search/searchServices@2020-08-01'" + "newText": "'Microsoft.Resources/deployments@2018-02-01'" } }, { - "label": "'Microsoft.Search/searchServices@2020-08-01-preview'", + "label": "'Microsoft.Resources/deployments@2018-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Search` \nType: `searchServices` \nAPI Version: `2020-08-01-preview`" + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2018-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d6e", + "sortText": "00000d0c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Search/searchServices@2020-08-01-preview'" + "newText": "'Microsoft.Resources/deployments@2018-05-01'" } }, { - "label": "'Microsoft.Security/advancedThreatProtectionSettings@2017-08-01-preview'", + "label": "'Microsoft.Resources/deployments@2019-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `advancedThreatProtectionSettings` \nAPI Version: `2017-08-01-preview`" + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2019-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d7b", + "sortText": "00000d0b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/advancedThreatProtectionSettings@2017-08-01-preview'" + "newText": "'Microsoft.Resources/deployments@2019-03-01'" } }, { - "label": "'Microsoft.Security/advancedThreatProtectionSettings@2019-01-01'", + "label": "'Microsoft.Resources/deployments@2019-05-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `advancedThreatProtectionSettings` \nAPI Version: `2019-01-01`" + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2019-05-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d7a", + "sortText": "00000d0a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/advancedThreatProtectionSettings@2019-01-01'" + "newText": "'Microsoft.Resources/deployments@2019-05-01'" } }, { - "label": "'Microsoft.Security/alertsSuppressionRules@2019-01-01-preview'", + "label": "'Microsoft.Resources/deployments@2019-05-10'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `alertsSuppressionRules` \nAPI Version: `2019-01-01-preview`" + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2019-05-10`" }, "deprecated": false, "preselect": false, - "sortText": "00000d7c", + "sortText": "00000d09", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/alertsSuppressionRules@2019-01-01-preview'" + "newText": "'Microsoft.Resources/deployments@2019-05-10'" } }, { - "label": "'Microsoft.Security/assessmentMetadata@2019-01-01-preview'", + "label": "'Microsoft.Resources/deployments@2019-07-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `assessmentMetadata` \nAPI Version: `2019-01-01-preview`" + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2019-07-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d7e", + "sortText": "00000d08", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/assessmentMetadata@2019-01-01-preview'" + "newText": "'Microsoft.Resources/deployments@2019-07-01'" } }, { - "label": "'Microsoft.Security/assessmentMetadata@2020-01-01'", + "label": "'Microsoft.Resources/deployments@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `assessmentMetadata` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d7d", + "sortText": "00000d07", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/assessmentMetadata@2020-01-01'" + "newText": "'Microsoft.Resources/deployments@2019-08-01'" } }, { - "label": "'Microsoft.Security/assessments@2019-01-01-preview'", + "label": "'Microsoft.Resources/deployments@2019-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `assessments` \nAPI Version: `2019-01-01-preview`" + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2019-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d80", + "sortText": "00000d06", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/assessments@2019-01-01-preview'" + "newText": "'Microsoft.Resources/deployments@2019-10-01'" } }, { - "label": "'Microsoft.Security/assessments@2020-01-01'", + "label": "'Microsoft.Resources/deployments@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `assessments` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Resources` \nType: `deployments` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d7f", + "sortText": "00000d05", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/assessments@2020-01-01'" + "newText": "'Microsoft.Resources/deployments@2020-06-01'" } }, { - "label": "'Microsoft.Security/autoProvisioningSettings@2017-08-01-preview'", + "label": "'Microsoft.Resources/tags@2019-10-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `autoProvisioningSettings` \nAPI Version: `2017-08-01-preview`" + "value": "Namespace: `Microsoft.Resources` \nType: `tags` \nAPI Version: `2019-10-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d82", + "sortText": "00000d16", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/autoProvisioningSettings@2017-08-01-preview'" + "newText": "'Microsoft.Resources/tags@2019-10-01'" } }, { - "label": "'Microsoft.Security/automations@2019-01-01-preview'", + "label": "'Microsoft.Resources/tags@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `automations` \nAPI Version: `2019-01-01-preview`" + "value": "Namespace: `Microsoft.Resources` \nType: `tags` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d81", + "sortText": "00000d15", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/automations@2019-01-01-preview'" + "newText": "'Microsoft.Resources/tags@2020-06-01'" } }, { - "label": "'Microsoft.Security/connectors@2020-01-01-preview'", + "label": "'Microsoft.Resources/templateSpecs/versions@2019-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `connectors` \nAPI Version: `2020-01-01-preview`" + "value": "Namespace: `Microsoft.Resources` \nType: `templateSpecs/versions` \nAPI Version: `2019-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d83", + "sortText": "00000d18", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/connectors@2020-01-01-preview'" + "newText": "'Microsoft.Resources/templateSpecs/versions@2019-06-01-preview'" } }, { - "label": "'Microsoft.Security/deviceSecurityGroups@2017-08-01-preview'", + "label": "'Microsoft.Resources/templateSpecs@2019-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `deviceSecurityGroups` \nAPI Version: `2017-08-01-preview`" + "value": "Namespace: `Microsoft.Resources` \nType: `templateSpecs` \nAPI Version: `2019-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d85", + "sortText": "00000d17", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/deviceSecurityGroups@2017-08-01-preview'" + "newText": "'Microsoft.Resources/templateSpecs@2019-06-01-preview'" } }, { - "label": "'Microsoft.Security/deviceSecurityGroups@2019-08-01'", + "label": "'Microsoft.SaaS/resources@2018-03-01-beta'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `deviceSecurityGroups` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.SaaS` \nType: `resources` \nAPI Version: `2018-03-01-beta`" }, "deprecated": false, "preselect": false, - "sortText": "00000d84", + "sortText": "00000d19", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/deviceSecurityGroups@2019-08-01'" + "newText": "'Microsoft.SaaS/resources@2018-03-01-beta'" } }, { - "label": "'Microsoft.Security/informationProtectionPolicies@2017-08-01-preview'", + "label": "'Microsoft.Scheduler/jobCollections/jobs@2014-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `informationProtectionPolicies` \nAPI Version: `2017-08-01-preview`" + "value": "Namespace: `Microsoft.Scheduler` \nType: `jobCollections/jobs` \nAPI Version: `2014-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d86", + "sortText": "00000d1f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/informationProtectionPolicies@2017-08-01-preview'" + "newText": "'Microsoft.Scheduler/jobCollections/jobs@2014-08-01-preview'" } }, { - "label": "'Microsoft.Security/iotDefenderSettings@2020-08-06-preview'", + "label": "'Microsoft.Scheduler/jobCollections/jobs@2016-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `iotDefenderSettings` \nAPI Version: `2020-08-06-preview`" + "value": "Namespace: `Microsoft.Scheduler` \nType: `jobCollections/jobs` \nAPI Version: `2016-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d87", + "sortText": "00000d1e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/iotDefenderSettings@2020-08-06-preview'" + "newText": "'Microsoft.Scheduler/jobCollections/jobs@2016-01-01'" } }, { - "label": "'Microsoft.Security/iotSecuritySolutions@2017-08-01-preview'", + "label": "'Microsoft.Scheduler/jobCollections/jobs@2016-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `iotSecuritySolutions` \nAPI Version: `2017-08-01-preview`" + "value": "Namespace: `Microsoft.Scheduler` \nType: `jobCollections/jobs` \nAPI Version: `2016-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d89", + "sortText": "00000d1d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/iotSecuritySolutions@2017-08-01-preview'" + "newText": "'Microsoft.Scheduler/jobCollections/jobs@2016-03-01'" } }, { - "label": "'Microsoft.Security/iotSecuritySolutions@2019-08-01'", + "label": "'Microsoft.Scheduler/jobCollections@2014-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `iotSecuritySolutions` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Scheduler` \nType: `jobCollections` \nAPI Version: `2014-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d88", + "sortText": "00000d1c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/iotSecuritySolutions@2019-08-01'" + "newText": "'Microsoft.Scheduler/jobCollections@2014-08-01-preview'" } }, { - "label": "'Microsoft.Security/iotSensors@2020-08-06-preview'", + "label": "'Microsoft.Scheduler/jobCollections@2016-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `iotSensors` \nAPI Version: `2020-08-06-preview`" + "value": "Namespace: `Microsoft.Scheduler` \nType: `jobCollections` \nAPI Version: `2016-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d8a", + "sortText": "00000d1b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/iotSensors@2020-08-06-preview'" + "newText": "'Microsoft.Scheduler/jobCollections@2016-01-01'" } }, { - "label": "'Microsoft.Security/locations/applicationWhitelistings@2015-06-01-preview'", + "label": "'Microsoft.Scheduler/jobCollections@2016-03-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `locations/applicationWhitelistings` \nAPI Version: `2015-06-01-preview`" + "value": "Namespace: `Microsoft.Scheduler` \nType: `jobCollections` \nAPI Version: `2016-03-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d8c", + "sortText": "00000d1a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/locations/applicationWhitelistings@2015-06-01-preview'" + "newText": "'Microsoft.Scheduler/jobCollections@2016-03-01'" } }, { - "label": "'Microsoft.Security/locations/applicationWhitelistings@2020-01-01'", + "label": "'Microsoft.Search/searchServices/privateEndpointConnections@2019-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `locations/applicationWhitelistings` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Search` \nType: `searchServices/privateEndpointConnections` \nAPI Version: `2019-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d8b", + "sortText": "00000d29", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/locations/applicationWhitelistings@2020-01-01'" + "newText": "'Microsoft.Search/searchServices/privateEndpointConnections@2019-10-01-preview'" } }, { - "label": "'Microsoft.Security/locations/jitNetworkAccessPolicies@2015-06-01-preview'", + "label": "'Microsoft.Search/searchServices/privateEndpointConnections@2020-03-13'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `locations/jitNetworkAccessPolicies` \nAPI Version: `2015-06-01-preview`" + "value": "Namespace: `Microsoft.Search` \nType: `searchServices/privateEndpointConnections` \nAPI Version: `2020-03-13`" }, "deprecated": false, "preselect": false, - "sortText": "00000d8e", + "sortText": "00000d28", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/locations/jitNetworkAccessPolicies@2015-06-01-preview'" + "newText": "'Microsoft.Search/searchServices/privateEndpointConnections@2020-03-13'" } }, { - "label": "'Microsoft.Security/locations/jitNetworkAccessPolicies@2020-01-01'", + "label": "'Microsoft.Search/searchServices/privateEndpointConnections@2020-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `locations/jitNetworkAccessPolicies` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Search` \nType: `searchServices/privateEndpointConnections` \nAPI Version: `2020-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d8d", + "sortText": "00000d27", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/locations/jitNetworkAccessPolicies@2020-01-01'" + "newText": "'Microsoft.Search/searchServices/privateEndpointConnections@2020-08-01'" } }, { - "label": "'Microsoft.Security/pricings@2017-08-01-preview'", + "label": "'Microsoft.Search/searchServices/privateEndpointConnections@2020-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `pricings` \nAPI Version: `2017-08-01-preview`" + "value": "Namespace: `Microsoft.Search` \nType: `searchServices/privateEndpointConnections` \nAPI Version: `2020-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d90", + "sortText": "00000d26", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/pricings@2017-08-01-preview'" + "newText": "'Microsoft.Search/searchServices/privateEndpointConnections@2020-08-01-preview'" } }, { - "label": "'Microsoft.Security/pricings@2018-06-01'", + "label": "'Microsoft.Search/searchServices/sharedPrivateLinkResources@2020-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `pricings` \nAPI Version: `2018-06-01`" + "value": "Namespace: `Microsoft.Search` \nType: `searchServices/sharedPrivateLinkResources` \nAPI Version: `2020-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d8f", + "sortText": "00000d2b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/pricings@2018-06-01'" + "newText": "'Microsoft.Search/searchServices/sharedPrivateLinkResources@2020-08-01'" } }, { - "label": "'Microsoft.Security/securityContacts@2017-08-01-preview'", + "label": "'Microsoft.Search/searchServices/sharedPrivateLinkResources@2020-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `securityContacts` \nAPI Version: `2017-08-01-preview`" + "value": "Namespace: `Microsoft.Search` \nType: `searchServices/sharedPrivateLinkResources` \nAPI Version: `2020-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d91", + "sortText": "00000d2a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/securityContacts@2017-08-01-preview'" + "newText": "'Microsoft.Search/searchServices/sharedPrivateLinkResources@2020-08-01-preview'" } }, { - "label": "'Microsoft.Security/settings@2017-08-01-preview'", + "label": "'Microsoft.Search/searchServices@2015-02-28'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `settings` \nAPI Version: `2017-08-01-preview`" + "value": "Namespace: `Microsoft.Search` \nType: `searchServices` \nAPI Version: `2015-02-28`" }, "deprecated": false, "preselect": false, - "sortText": "00000d93", + "sortText": "00000d25", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/settings@2017-08-01-preview'" + "newText": "'Microsoft.Search/searchServices@2015-02-28'" } }, { - "label": "'Microsoft.Security/settings@2019-01-01'", + "label": "'Microsoft.Search/searchServices@2015-08-19'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `settings` \nAPI Version: `2019-01-01`" + "value": "Namespace: `Microsoft.Search` \nType: `searchServices` \nAPI Version: `2015-08-19`" }, "deprecated": false, "preselect": false, - "sortText": "00000d92", + "sortText": "00000d24", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/settings@2019-01-01'" + "newText": "'Microsoft.Search/searchServices@2015-08-19'" } }, { - "label": "'Microsoft.Security/workspaceSettings@2017-08-01-preview'", + "label": "'Microsoft.Search/searchServices@2019-10-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Security` \nType: `workspaceSettings` \nAPI Version: `2017-08-01-preview`" + "value": "Namespace: `Microsoft.Search` \nType: `searchServices` \nAPI Version: `2019-10-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d94", + "sortText": "00000d23", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Security/workspaceSettings@2017-08-01-preview'" + "newText": "'Microsoft.Search/searchServices@2019-10-01-preview'" } }, { - "label": "'Microsoft.SecurityInsights/alertRules/actions@2019-01-01-preview'", + "label": "'Microsoft.Search/searchServices@2020-03-13'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.SecurityInsights` \nType: `alertRules/actions` \nAPI Version: `2019-01-01-preview`" + "value": "Namespace: `Microsoft.Search` \nType: `searchServices` \nAPI Version: `2020-03-13`" }, "deprecated": false, "preselect": false, - "sortText": "00000d98", + "sortText": "00000d22", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.SecurityInsights/alertRules/actions@2019-01-01-preview'" + "newText": "'Microsoft.Search/searchServices@2020-03-13'" } }, { - "label": "'Microsoft.SecurityInsights/alertRules/actions@2020-01-01'", + "label": "'Microsoft.Search/searchServices@2020-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.SecurityInsights` \nType: `alertRules/actions` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Search` \nType: `searchServices` \nAPI Version: `2020-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d97", + "sortText": "00000d21", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.SecurityInsights/alertRules/actions@2020-01-01'" + "newText": "'Microsoft.Search/searchServices@2020-08-01'" } }, { - "label": "'Microsoft.SecurityInsights/alertRules@2019-01-01-preview'", + "label": "'Microsoft.Search/searchServices@2020-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.SecurityInsights` \nType: `alertRules` \nAPI Version: `2019-01-01-preview`" + "value": "Namespace: `Microsoft.Search` \nType: `searchServices` \nAPI Version: `2020-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d96", + "sortText": "00000d20", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.SecurityInsights/alertRules@2019-01-01-preview'" + "newText": "'Microsoft.Search/searchServices@2020-08-01-preview'" } }, { - "label": "'Microsoft.SecurityInsights/alertRules@2020-01-01'", + "label": "'Microsoft.Security/advancedThreatProtectionSettings@2017-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.SecurityInsights` \nType: `alertRules` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Security` \nType: `advancedThreatProtectionSettings` \nAPI Version: `2017-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d95", + "sortText": "00000d2d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.SecurityInsights/alertRules@2020-01-01'" + "newText": "'Microsoft.Security/advancedThreatProtectionSettings@2017-08-01-preview'" } }, { - "label": "'Microsoft.SecurityInsights/bookmarks/relations@2019-01-01-preview'", + "label": "'Microsoft.Security/advancedThreatProtectionSettings@2019-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.SecurityInsights` \nType: `bookmarks/relations` \nAPI Version: `2019-01-01-preview`" + "value": "Namespace: `Microsoft.Security` \nType: `advancedThreatProtectionSettings` \nAPI Version: `2019-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d9b", + "sortText": "00000d2c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.SecurityInsights/bookmarks/relations@2019-01-01-preview'" + "newText": "'Microsoft.Security/advancedThreatProtectionSettings@2019-01-01'" } }, { - "label": "'Microsoft.SecurityInsights/bookmarks@2019-01-01-preview'", + "label": "'Microsoft.Security/assessments@2019-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.SecurityInsights` \nType: `bookmarks` \nAPI Version: `2019-01-01-preview`" + "value": "Namespace: `Microsoft.Security` \nType: `assessments` \nAPI Version: `2019-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d9a", + "sortText": "00000d2f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.SecurityInsights/bookmarks@2019-01-01-preview'" + "newText": "'Microsoft.Security/assessments@2019-01-01-preview'" } }, { - "label": "'Microsoft.SecurityInsights/bookmarks@2020-01-01'", + "label": "'Microsoft.Security/assessments@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.SecurityInsights` \nType: `bookmarks` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Security` \nType: `assessments` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d99", + "sortText": "00000d2e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.SecurityInsights/bookmarks@2020-01-01'" + "newText": "'Microsoft.Security/assessments@2020-01-01'" } }, { - "label": "'Microsoft.SecurityInsights/cases/comments@2019-01-01-preview'", + "label": "'Microsoft.Security/automations@2019-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.SecurityInsights` \nType: `cases/comments` \nAPI Version: `2019-01-01-preview`" + "value": "Namespace: `Microsoft.Security` \nType: `automations` \nAPI Version: `2019-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d9d", + "sortText": "00000d30", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.SecurityInsights/cases/comments@2019-01-01-preview'" + "newText": "'Microsoft.Security/automations@2019-01-01-preview'" } }, { - "label": "'Microsoft.SecurityInsights/cases/relations@2019-01-01-preview'", + "label": "'Microsoft.Security/deviceSecurityGroups@2017-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.SecurityInsights` \nType: `cases/relations` \nAPI Version: `2019-01-01-preview`" + "value": "Namespace: `Microsoft.Security` \nType: `deviceSecurityGroups` \nAPI Version: `2017-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d9e", + "sortText": "00000d32", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.SecurityInsights/cases/relations@2019-01-01-preview'" + "newText": "'Microsoft.Security/deviceSecurityGroups@2017-08-01-preview'" } }, { - "label": "'Microsoft.SecurityInsights/cases@2019-01-01-preview'", + "label": "'Microsoft.Security/deviceSecurityGroups@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.SecurityInsights` \nType: `cases` \nAPI Version: `2019-01-01-preview`" + "value": "Namespace: `Microsoft.Security` \nType: `deviceSecurityGroups` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000d9c", + "sortText": "00000d31", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.SecurityInsights/cases@2019-01-01-preview'" + "newText": "'Microsoft.Security/deviceSecurityGroups@2019-08-01'" } }, { - "label": "'Microsoft.SecurityInsights/dataConnectors@2019-01-01-preview'", + "label": "'Microsoft.Security/informationProtectionPolicies@2017-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.SecurityInsights` \nType: `dataConnectors` \nAPI Version: `2019-01-01-preview`" + "value": "Namespace: `Microsoft.Security` \nType: `informationProtectionPolicies` \nAPI Version: `2017-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000da0", + "sortText": "00000d33", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.SecurityInsights/dataConnectors@2019-01-01-preview'" + "newText": "'Microsoft.Security/informationProtectionPolicies@2017-08-01-preview'" } }, { - "label": "'Microsoft.SecurityInsights/dataConnectors@2020-01-01'", + "label": "'Microsoft.Security/iotSecuritySolutions@2017-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.SecurityInsights` \nType: `dataConnectors` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Security` \nType: `iotSecuritySolutions` \nAPI Version: `2017-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000d9f", + "sortText": "00000d35", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.SecurityInsights/dataConnectors@2020-01-01'" + "newText": "'Microsoft.Security/iotSecuritySolutions@2017-08-01-preview'" } }, { - "label": "'Microsoft.SecurityInsights/incidents/comments@2019-01-01-preview'", + "label": "'Microsoft.Security/iotSecuritySolutions@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.SecurityInsights` \nType: `incidents/comments` \nAPI Version: `2019-01-01-preview`" + "value": "Namespace: `Microsoft.Security` \nType: `iotSecuritySolutions` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000da4", + "sortText": "00000d34", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.SecurityInsights/incidents/comments@2019-01-01-preview'" + "newText": "'Microsoft.Security/iotSecuritySolutions@2019-08-01'" } }, { - "label": "'Microsoft.SecurityInsights/incidents/comments@2020-01-01'", + "label": "'Microsoft.Security/iotSensors@2020-08-06-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.SecurityInsights` \nType: `incidents/comments` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Security` \nType: `iotSensors` \nAPI Version: `2020-08-06-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000da3", + "sortText": "00000d36", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.SecurityInsights/incidents/comments@2020-01-01'" + "newText": "'Microsoft.Security/iotSensors@2020-08-06-preview'" } }, { - "label": "'Microsoft.SecurityInsights/incidents/relations@2019-01-01-preview'", + "label": "'Microsoft.Security/locations/jitNetworkAccessPolicies@2015-06-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.SecurityInsights` \nType: `incidents/relations` \nAPI Version: `2019-01-01-preview`" + "value": "Namespace: `Microsoft.Security` \nType: `locations/jitNetworkAccessPolicies` \nAPI Version: `2015-06-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000da5", + "sortText": "00000d38", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.SecurityInsights/incidents/relations@2019-01-01-preview'" + "newText": "'Microsoft.Security/locations/jitNetworkAccessPolicies@2015-06-01-preview'" } }, { - "label": "'Microsoft.SecurityInsights/incidents@2019-01-01-preview'", + "label": "'Microsoft.Security/locations/jitNetworkAccessPolicies@2020-01-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.SecurityInsights` \nType: `incidents` \nAPI Version: `2019-01-01-preview`" + "value": "Namespace: `Microsoft.Security` \nType: `locations/jitNetworkAccessPolicies` \nAPI Version: `2020-01-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000da2", + "sortText": "00000d37", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.SecurityInsights/incidents@2019-01-01-preview'" + "newText": "'Microsoft.Security/locations/jitNetworkAccessPolicies@2020-01-01'" } }, { - "label": "'Microsoft.SecurityInsights/incidents@2020-01-01'", + "label": "'Microsoft.Security/pricings@2017-08-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.SecurityInsights` \nType: `incidents` \nAPI Version: `2020-01-01`" + "value": "Namespace: `Microsoft.Security` \nType: `pricings` \nAPI Version: `2017-08-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000da1", + "sortText": "00000d39", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.SecurityInsights/incidents@2020-01-01'" + "newText": "'Microsoft.Security/pricings@2017-08-01-preview'" } }, { - "label": "'Microsoft.SecurityInsights/settings@2019-01-01-preview'", + "label": "'Microsoft.ServiceBus/namespaces/AuthorizationRules@2015-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.SecurityInsights` \nType: `settings` \nAPI Version: `2019-01-01-preview`" + "value": "Namespace: `Microsoft.ServiceBus` \nType: `namespaces/AuthorizationRules` \nAPI Version: `2015-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000da6", + "sortText": "00000d3f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.SecurityInsights/settings@2019-01-01-preview'" + "newText": "'Microsoft.ServiceBus/namespaces/AuthorizationRules@2015-08-01'" } }, { - "label": "'Microsoft.SecurityInsights/threatIntelligence/indicators@2019-01-01-preview'", + "label": "'Microsoft.ServiceBus/namespaces/AuthorizationRules@2017-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.SecurityInsights` \nType: `threatIntelligence/indicators` \nAPI Version: `2019-01-01-preview`" + "value": "Namespace: `Microsoft.ServiceBus` \nType: `namespaces/AuthorizationRules` \nAPI Version: `2017-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000da7", + "sortText": "00000d3e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.SecurityInsights/threatIntelligence/indicators@2019-01-01-preview'" + "newText": "'Microsoft.ServiceBus/namespaces/AuthorizationRules@2017-04-01'" } }, { - "label": "'Microsoft.SecurityInsights/watchlists@2019-01-01-preview'", + "label": "'Microsoft.ServiceBus/namespaces/AuthorizationRules@2018-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.SecurityInsights` \nType: `watchlists` \nAPI Version: `2019-01-01-preview`" + "value": "Namespace: `Microsoft.ServiceBus` \nType: `namespaces/AuthorizationRules` \nAPI Version: `2018-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000da8", + "sortText": "00000d3d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.SecurityInsights/watchlists@2019-01-01-preview'" + "newText": "'Microsoft.ServiceBus/namespaces/AuthorizationRules@2018-01-01-preview'" } }, { - "label": "'Microsoft.ServiceBus/namespaces/AuthorizationRules@2015-08-01'", + "label": "'Microsoft.ServiceBus/namespaces/disasterRecoveryConfigs@2017-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ServiceBus` \nType: `namespaces/AuthorizationRules` \nAPI Version: `2015-08-01`" + "value": "Namespace: `Microsoft.ServiceBus` \nType: `namespaces/disasterRecoveryConfigs` \nAPI Version: `2017-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000dad", + "sortText": "00000d41", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ServiceBus/namespaces/AuthorizationRules@2015-08-01'" + "newText": "'Microsoft.ServiceBus/namespaces/disasterRecoveryConfigs@2017-04-01'" } }, { - "label": "'Microsoft.ServiceBus/namespaces/AuthorizationRules@2017-04-01'", + "label": "'Microsoft.ServiceBus/namespaces/disasterRecoveryConfigs@2018-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ServiceBus` \nType: `namespaces/AuthorizationRules` \nAPI Version: `2017-04-01`" + "value": "Namespace: `Microsoft.ServiceBus` \nType: `namespaces/disasterRecoveryConfigs` \nAPI Version: `2018-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000dac", + "sortText": "00000d40", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ServiceBus/namespaces/AuthorizationRules@2017-04-01'" + "newText": "'Microsoft.ServiceBus/namespaces/disasterRecoveryConfigs@2018-01-01-preview'" } }, { - "label": "'Microsoft.ServiceBus/namespaces/disasterRecoveryConfigs@2017-04-01'", + "label": "'Microsoft.ServiceBus/namespaces/ipfilterrules@2018-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ServiceBus` \nType: `namespaces/disasterRecoveryConfigs` \nAPI Version: `2017-04-01`" + "value": "Namespace: `Microsoft.ServiceBus` \nType: `namespaces/ipfilterrules` \nAPI Version: `2018-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000dae", + "sortText": "00000d42", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ServiceBus/namespaces/disasterRecoveryConfigs@2017-04-01'" + "newText": "'Microsoft.ServiceBus/namespaces/ipfilterrules@2018-01-01-preview'" } }, { - "label": "'Microsoft.ServiceBus/namespaces/ipfilterrules@2018-01-01-preview'", + "label": "'Microsoft.ServiceBus/namespaces/migrationConfigurations@2017-04-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ServiceBus` \nType: `namespaces/ipfilterrules` \nAPI Version: `2018-01-01-preview`" + "value": "Namespace: `Microsoft.ServiceBus` \nType: `namespaces/migrationConfigurations` \nAPI Version: `2017-04-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000daf", + "sortText": "00000d44", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ServiceBus/namespaces/ipfilterrules@2018-01-01-preview'" + "newText": "'Microsoft.ServiceBus/namespaces/migrationConfigurations@2017-04-01'" } }, { - "label": "'Microsoft.ServiceBus/namespaces/migrationConfigurations@2017-04-01'", + "label": "'Microsoft.ServiceBus/namespaces/migrationConfigurations@2018-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ServiceBus` \nType: `namespaces/migrationConfigurations` \nAPI Version: `2017-04-01`" + "value": "Namespace: `Microsoft.ServiceBus` \nType: `namespaces/migrationConfigurations` \nAPI Version: `2018-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000db0", + "sortText": "00000d43", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ServiceBus/namespaces/migrationConfigurations@2017-04-01'" + "newText": "'Microsoft.ServiceBus/namespaces/migrationConfigurations@2018-01-01-preview'" } }, { @@ -59032,7 +57247,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000db2", + "sortText": "00000d46", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59041,20 +57256,20 @@ } }, { - "label": "'Microsoft.ServiceBus/namespaces/networkrulesets@2018-01-01-preview'", + "label": "'Microsoft.ServiceBus/namespaces/networkRuleSets@2018-01-01-preview'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.ServiceBus` \nType: `namespaces/networkrulesets` \nAPI Version: `2018-01-01-preview`" + "value": "Namespace: `Microsoft.ServiceBus` \nType: `namespaces/networkRuleSets` \nAPI Version: `2018-01-01-preview`" }, "deprecated": false, "preselect": false, - "sortText": "00000db1", + "sortText": "00000d45", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.ServiceBus/namespaces/networkrulesets@2018-01-01-preview'" + "newText": "'Microsoft.ServiceBus/namespaces/networkRuleSets@2018-01-01-preview'" } }, { @@ -59066,7 +57281,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000db3", + "sortText": "00000d47", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59083,7 +57298,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000db7", + "sortText": "00000d4d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59100,7 +57315,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000db6", + "sortText": "00000d4c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59108,6 +57323,23 @@ "newText": "'Microsoft.ServiceBus/namespaces/queues/authorizationRules@2017-04-01'" } }, + { + "label": "'Microsoft.ServiceBus/namespaces/queues/authorizationRules@2018-01-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.ServiceBus` \nType: `namespaces/queues/authorizationRules` \nAPI Version: `2018-01-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d4b", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.ServiceBus/namespaces/queues/authorizationRules@2018-01-01-preview'" + } + }, { "label": "'Microsoft.ServiceBus/namespaces/queues@2015-08-01'", "kind": "class", @@ -59117,7 +57349,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000db5", + "sortText": "00000d4a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59134,7 +57366,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000db4", + "sortText": "00000d49", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59142,6 +57374,23 @@ "newText": "'Microsoft.ServiceBus/namespaces/queues@2017-04-01'" } }, + { + "label": "'Microsoft.ServiceBus/namespaces/queues@2018-01-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.ServiceBus` \nType: `namespaces/queues` \nAPI Version: `2018-01-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d48", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.ServiceBus/namespaces/queues@2018-01-01-preview'" + } + }, { "label": "'Microsoft.ServiceBus/namespaces/topics/authorizationRules@2015-08-01'", "kind": "class", @@ -59151,7 +57400,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dbb", + "sortText": "00000d53", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59168,7 +57417,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dba", + "sortText": "00000d52", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59176,6 +57425,23 @@ "newText": "'Microsoft.ServiceBus/namespaces/topics/authorizationRules@2017-04-01'" } }, + { + "label": "'Microsoft.ServiceBus/namespaces/topics/authorizationRules@2018-01-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.ServiceBus` \nType: `namespaces/topics/authorizationRules` \nAPI Version: `2018-01-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d51", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.ServiceBus/namespaces/topics/authorizationRules@2018-01-01-preview'" + } + }, { "label": "'Microsoft.ServiceBus/namespaces/topics/subscriptions/rules@2017-04-01'", "kind": "class", @@ -59185,7 +57451,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dbe", + "sortText": "00000d58", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59193,6 +57459,23 @@ "newText": "'Microsoft.ServiceBus/namespaces/topics/subscriptions/rules@2017-04-01'" } }, + { + "label": "'Microsoft.ServiceBus/namespaces/topics/subscriptions/rules@2018-01-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.ServiceBus` \nType: `namespaces/topics/subscriptions/rules` \nAPI Version: `2018-01-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d57", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.ServiceBus/namespaces/topics/subscriptions/rules@2018-01-01-preview'" + } + }, { "label": "'Microsoft.ServiceBus/namespaces/topics/subscriptions@2015-08-01'", "kind": "class", @@ -59202,7 +57485,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dbd", + "sortText": "00000d56", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59219,7 +57502,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dbc", + "sortText": "00000d55", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59227,6 +57510,23 @@ "newText": "'Microsoft.ServiceBus/namespaces/topics/subscriptions@2017-04-01'" } }, + { + "label": "'Microsoft.ServiceBus/namespaces/topics/subscriptions@2018-01-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.ServiceBus` \nType: `namespaces/topics/subscriptions` \nAPI Version: `2018-01-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d54", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.ServiceBus/namespaces/topics/subscriptions@2018-01-01-preview'" + } + }, { "label": "'Microsoft.ServiceBus/namespaces/topics@2015-08-01'", "kind": "class", @@ -59236,7 +57536,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000db9", + "sortText": "00000d50", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59253,7 +57553,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000db8", + "sortText": "00000d4f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59261,6 +57561,23 @@ "newText": "'Microsoft.ServiceBus/namespaces/topics@2017-04-01'" } }, + { + "label": "'Microsoft.ServiceBus/namespaces/topics@2018-01-01-preview'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.ServiceBus` \nType: `namespaces/topics` \nAPI Version: `2018-01-01-preview`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000d4e", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.ServiceBus/namespaces/topics@2018-01-01-preview'" + } + }, { "label": "'Microsoft.ServiceBus/namespaces/virtualnetworkrules@2018-01-01-preview'", "kind": "class", @@ -59270,7 +57587,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dbf", + "sortText": "00000d59", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59287,7 +57604,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dab", + "sortText": "00000d3c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59304,7 +57621,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000daa", + "sortText": "00000d3b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59321,7 +57638,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000da9", + "sortText": "00000d3a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59338,7 +57655,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ddf", + "sortText": "00000d79", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59355,7 +57672,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dde", + "sortText": "00000d78", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59372,7 +57689,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ddd", + "sortText": "00000d77", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59389,7 +57706,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ddc", + "sortText": "00000d76", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59406,7 +57723,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ddb", + "sortText": "00000d75", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59423,7 +57740,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dda", + "sortText": "00000d74", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59440,7 +57757,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dd9", + "sortText": "00000d73", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59457,7 +57774,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dd8", + "sortText": "00000d72", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59474,7 +57791,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dd7", + "sortText": "00000d71", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59491,7 +57808,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dd6", + "sortText": "00000d70", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59508,7 +57825,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dd5", + "sortText": "00000d6f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59525,7 +57842,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dd4", + "sortText": "00000d6e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59542,7 +57859,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dd3", + "sortText": "00000d6d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59559,7 +57876,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dd2", + "sortText": "00000d6c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59576,7 +57893,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dd1", + "sortText": "00000d6b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59593,7 +57910,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dd0", + "sortText": "00000d6a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59610,7 +57927,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dcf", + "sortText": "00000d69", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59627,7 +57944,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dce", + "sortText": "00000d68", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59644,7 +57961,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dcd", + "sortText": "00000d67", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59661,7 +57978,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dcc", + "sortText": "00000d66", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59678,7 +57995,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dcb", + "sortText": "00000d65", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59695,7 +58012,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dca", + "sortText": "00000d64", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59712,7 +58029,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dc9", + "sortText": "00000d63", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59729,7 +58046,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dc8", + "sortText": "00000d62", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59746,7 +58063,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dc7", + "sortText": "00000d61", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59763,7 +58080,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dc6", + "sortText": "00000d60", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59780,7 +58097,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dc5", + "sortText": "00000d5f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59797,7 +58114,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dc4", + "sortText": "00000d5e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59814,7 +58131,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dc3", + "sortText": "00000d5d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59831,7 +58148,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dc2", + "sortText": "00000d5c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59848,7 +58165,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dc1", + "sortText": "00000d5b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59865,7 +58182,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dc0", + "sortText": "00000d5a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59882,7 +58199,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000de1", + "sortText": "00000d7b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59899,7 +58216,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000de0", + "sortText": "00000d7a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59916,7 +58233,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000de3", + "sortText": "00000d7d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59933,7 +58250,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000de2", + "sortText": "00000d7c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59950,7 +58267,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000de4", + "sortText": "00000d7e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59967,7 +58284,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000de6", + "sortText": "00000d80", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -59984,7 +58301,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000de5", + "sortText": "00000d7f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60001,7 +58318,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000de8", + "sortText": "00000d82", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60018,7 +58335,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000de7", + "sortText": "00000d81", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60035,7 +58352,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dea", + "sortText": "00000d84", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60052,7 +58369,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000de9", + "sortText": "00000d83", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60069,7 +58386,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dee", + "sortText": "00000d88", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60086,7 +58403,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000df0", + "sortText": "00000d8a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60103,7 +58420,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000def", + "sortText": "00000d89", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60120,7 +58437,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ded", + "sortText": "00000d87", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60137,7 +58454,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dec", + "sortText": "00000d86", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60154,7 +58471,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000deb", + "sortText": "00000d85", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60171,7 +58488,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000df2", + "sortText": "00000d8c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60188,7 +58505,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000df1", + "sortText": "00000d8b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60205,7 +58522,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000df3", + "sortText": "00000d8d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60222,7 +58539,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000df4", + "sortText": "00000d8e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60239,7 +58556,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000df8", + "sortText": "00000d92", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60256,7 +58573,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000df7", + "sortText": "00000d91", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60273,7 +58590,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000df6", + "sortText": "00000d90", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60290,7 +58607,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000df5", + "sortText": "00000d8f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60307,7 +58624,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dfc", + "sortText": "00000d96", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60324,7 +58641,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dfb", + "sortText": "00000d95", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60341,7 +58658,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dfa", + "sortText": "00000d94", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60358,7 +58675,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000df9", + "sortText": "00000d93", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60375,7 +58692,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dfe", + "sortText": "00000d98", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60392,7 +58709,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dfd", + "sortText": "00000d97", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60409,7 +58726,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000dff", + "sortText": "00000d99", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60426,7 +58743,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e00", + "sortText": "00000d9a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60443,7 +58760,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e01", + "sortText": "00000d9b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60460,7 +58777,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e05", + "sortText": "00000d9f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60477,7 +58794,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e06", + "sortText": "00000da0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60494,7 +58811,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e0b", + "sortText": "00000da5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60511,7 +58828,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e0c", + "sortText": "00000da6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60528,7 +58845,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e0d", + "sortText": "00000da7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60545,7 +58862,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e0e", + "sortText": "00000da8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60562,7 +58879,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e10", + "sortText": "00000daa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60579,7 +58896,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e0f", + "sortText": "00000da9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60596,7 +58913,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e0a", + "sortText": "00000da4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60613,7 +58930,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e09", + "sortText": "00000da3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60630,7 +58947,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e08", + "sortText": "00000da2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60647,7 +58964,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e07", + "sortText": "00000da1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60664,7 +58981,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e11", + "sortText": "00000dab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60681,7 +58998,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e12", + "sortText": "00000dac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60698,7 +59015,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e13", + "sortText": "00000dad", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60715,7 +59032,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e15", + "sortText": "00000daf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60732,7 +59049,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e14", + "sortText": "00000dae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60749,7 +59066,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e16", + "sortText": "00000db0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60766,7 +59083,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e04", + "sortText": "00000d9e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60783,7 +59100,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e03", + "sortText": "00000d9d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60800,7 +59117,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e02", + "sortText": "00000d9c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60817,7 +59134,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e1c", + "sortText": "00000db6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60834,7 +59151,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e1b", + "sortText": "00000db5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60851,7 +59168,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e1a", + "sortText": "00000db4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60868,7 +59185,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e1d", + "sortText": "00000db7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60885,7 +59202,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e1e", + "sortText": "00000db8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60902,7 +59219,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e1f", + "sortText": "00000db9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60919,7 +59236,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e20", + "sortText": "00000dba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60936,7 +59253,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e21", + "sortText": "00000dbb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60953,7 +59270,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e22", + "sortText": "00000dbc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60970,7 +59287,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e29", + "sortText": "00000dc3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -60987,7 +59304,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e2a", + "sortText": "00000dc4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61004,7 +59321,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e2c", + "sortText": "00000dc6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61021,7 +59338,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e2b", + "sortText": "00000dc5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61038,7 +59355,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e2d", + "sortText": "00000dc7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61055,7 +59372,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e2e", + "sortText": "00000dc8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61072,7 +59389,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e2f", + "sortText": "00000dc9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61089,7 +59406,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e31", + "sortText": "00000dcb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61106,7 +59423,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e30", + "sortText": "00000dca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61123,7 +59440,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e32", + "sortText": "00000dcc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61140,7 +59457,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e33", + "sortText": "00000dcd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61157,7 +59474,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e34", + "sortText": "00000dce", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61174,7 +59491,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e35", + "sortText": "00000dcf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61191,7 +59508,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e38", + "sortText": "00000dd2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61208,7 +59525,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e37", + "sortText": "00000dd1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61225,7 +59542,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e36", + "sortText": "00000dd0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61242,7 +59559,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e3c", + "sortText": "00000dd6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61259,7 +59576,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e3b", + "sortText": "00000dd5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61276,7 +59593,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e3a", + "sortText": "00000dd4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61293,7 +59610,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e39", + "sortText": "00000dd3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61310,7 +59627,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e3d", + "sortText": "00000dd7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61327,7 +59644,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e3f", + "sortText": "00000dd9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61344,7 +59661,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e3e", + "sortText": "00000dd8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61361,7 +59678,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e41", + "sortText": "00000ddb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61378,7 +59695,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e40", + "sortText": "00000dda", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61395,7 +59712,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e28", + "sortText": "00000dc2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61412,7 +59729,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e27", + "sortText": "00000dc1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61429,7 +59746,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e26", + "sortText": "00000dc0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61446,7 +59763,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e25", + "sortText": "00000dbf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61463,7 +59780,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e24", + "sortText": "00000dbe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61480,7 +59797,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e23", + "sortText": "00000dbd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61497,7 +59814,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e44", + "sortText": "00000dde", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61514,7 +59831,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e43", + "sortText": "00000ddd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61531,7 +59848,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e42", + "sortText": "00000ddc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61548,7 +59865,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e45", + "sortText": "00000ddf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61565,7 +59882,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e46", + "sortText": "00000de0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61582,7 +59899,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e47", + "sortText": "00000de1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61599,7 +59916,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e49", + "sortText": "00000de3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61616,7 +59933,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e48", + "sortText": "00000de2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61633,7 +59950,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e4b", + "sortText": "00000de5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61650,7 +59967,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e4d", + "sortText": "00000de7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61667,7 +59984,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e4c", + "sortText": "00000de6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61684,7 +60001,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e4e", + "sortText": "00000de8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61701,7 +60018,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e4a", + "sortText": "00000de4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61718,7 +60035,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e4f", + "sortText": "00000de9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61735,7 +60052,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e50", + "sortText": "00000dea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61752,7 +60069,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e52", + "sortText": "00000dec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61769,7 +60086,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e51", + "sortText": "00000deb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61786,7 +60103,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e53", + "sortText": "00000ded", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61803,7 +60120,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e54", + "sortText": "00000dee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61820,7 +60137,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e55", + "sortText": "00000def", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61837,7 +60154,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e19", + "sortText": "00000db3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61854,7 +60171,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e18", + "sortText": "00000db2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61871,7 +60188,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e17", + "sortText": "00000db1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61888,7 +60205,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e57", + "sortText": "00000df1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61905,7 +60222,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e56", + "sortText": "00000df0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61922,7 +60239,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e58", + "sortText": "00000df2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61939,7 +60256,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eca", + "sortText": "00000e65", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61956,7 +60273,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ec9", + "sortText": "00000e64", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61973,7 +60290,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ecb", + "sortText": "00000e66", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -61990,7 +60307,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ecc", + "sortText": "00000e67", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62007,7 +60324,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ece", + "sortText": "00000e69", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62024,7 +60341,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ecd", + "sortText": "00000e68", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62041,7 +60358,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ed0", + "sortText": "00000e6b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62058,7 +60375,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ecf", + "sortText": "00000e6a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62075,7 +60392,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ed1", + "sortText": "00000e6c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62092,7 +60409,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ed2", + "sortText": "00000e6d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62109,7 +60426,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ed4", + "sortText": "00000e6f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62126,7 +60443,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ed3", + "sortText": "00000e6e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62143,7 +60460,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ed6", + "sortText": "00000e71", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62160,7 +60477,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ed5", + "sortText": "00000e70", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62177,7 +60494,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ed7", + "sortText": "00000e72", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62194,7 +60511,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ed9", + "sortText": "00000e74", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62211,7 +60528,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ed8", + "sortText": "00000e73", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62228,7 +60545,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000edb", + "sortText": "00000e76", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62245,7 +60562,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eda", + "sortText": "00000e75", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62262,7 +60579,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000edd", + "sortText": "00000e78", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62279,7 +60596,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000edc", + "sortText": "00000e77", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62296,7 +60613,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ede", + "sortText": "00000e79", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62313,7 +60630,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ec8", + "sortText": "00000e63", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62330,7 +60647,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ec7", + "sortText": "00000e62", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62338,23 +60655,6 @@ "newText": "'Microsoft.StorSimple/managers@2017-06-01'" } }, - { - "label": "'Microsoft.Storage.Admin/locations/quotas@2019-08-08-preview'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Storage.Admin` \nType: `locations/quotas` \nAPI Version: `2019-08-08-preview`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000e59", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Storage.Admin/locations/quotas@2019-08-08-preview'" - } - }, { "label": "'Microsoft.Storage/storageAccounts/blobServices/containers/immutabilityPolicies@2018-02-01'", "kind": "class", @@ -62364,7 +60664,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e7a", + "sortText": "00000e13", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62381,7 +60681,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e79", + "sortText": "00000e12", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62398,7 +60698,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e78", + "sortText": "00000e11", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62415,7 +60715,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e77", + "sortText": "00000e10", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62432,7 +60732,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e76", + "sortText": "00000e0f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62449,7 +60749,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e75", + "sortText": "00000e0e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62466,7 +60766,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e74", + "sortText": "00000e0d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62483,7 +60783,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e73", + "sortText": "00000e0c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62500,7 +60800,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e72", + "sortText": "00000e0b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62517,7 +60817,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e71", + "sortText": "00000e0a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62534,7 +60834,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e70", + "sortText": "00000e09", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62551,7 +60851,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e6f", + "sortText": "00000e08", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62568,7 +60868,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e6e", + "sortText": "00000e07", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62585,7 +60885,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e6d", + "sortText": "00000e06", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62602,7 +60902,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e6c", + "sortText": "00000e05", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62619,7 +60919,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e6b", + "sortText": "00000e04", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62636,7 +60936,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e6a", + "sortText": "00000e03", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62653,7 +60953,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e69", + "sortText": "00000e02", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62670,7 +60970,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e68", + "sortText": "00000e01", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62687,7 +60987,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e7c", + "sortText": "00000e15", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62704,7 +61004,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e7b", + "sortText": "00000e14", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62721,7 +61021,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e82", + "sortText": "00000e1b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62738,7 +61038,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e81", + "sortText": "00000e1a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62755,7 +61055,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e80", + "sortText": "00000e19", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62772,7 +61072,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e7f", + "sortText": "00000e18", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62789,7 +61089,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e7e", + "sortText": "00000e17", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62806,7 +61106,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e7d", + "sortText": "00000e16", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62823,7 +61123,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e83", + "sortText": "00000e1c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62840,7 +61140,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e88", + "sortText": "00000e21", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62857,7 +61157,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e87", + "sortText": "00000e20", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62874,7 +61174,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e86", + "sortText": "00000e1f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62891,7 +61191,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e85", + "sortText": "00000e1e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62908,7 +61208,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e84", + "sortText": "00000e1d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62925,7 +61225,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e8a", + "sortText": "00000e23", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62942,7 +61242,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e89", + "sortText": "00000e22", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62959,7 +61259,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e8c", + "sortText": "00000e25", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62976,7 +61276,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e8b", + "sortText": "00000e24", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -62993,7 +61293,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e90", + "sortText": "00000e29", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63010,7 +61310,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e8f", + "sortText": "00000e28", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63027,7 +61327,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e8e", + "sortText": "00000e27", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63044,7 +61344,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e8d", + "sortText": "00000e26", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63061,7 +61361,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e92", + "sortText": "00000e2b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63078,7 +61378,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e91", + "sortText": "00000e2a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63095,7 +61395,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e67", + "sortText": "00000e00", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63112,7 +61412,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e66", + "sortText": "00000dff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63129,7 +61429,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e65", + "sortText": "00000dfe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63146,7 +61446,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e64", + "sortText": "00000dfd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63163,7 +61463,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e63", + "sortText": "00000dfc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63180,7 +61480,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e62", + "sortText": "00000dfb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63197,7 +61497,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e61", + "sortText": "00000dfa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63214,7 +61514,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e60", + "sortText": "00000df9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63231,7 +61531,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e5f", + "sortText": "00000df8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63248,7 +61548,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e5e", + "sortText": "00000df7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63265,7 +61565,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e5d", + "sortText": "00000df6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63282,7 +61582,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e5c", + "sortText": "00000df5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63299,7 +61599,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e5b", + "sortText": "00000df4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63316,7 +61616,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e5a", + "sortText": "00000df3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63333,7 +61633,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e98", + "sortText": "00000e33", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63350,7 +61650,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e97", + "sortText": "00000e32", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63367,7 +61667,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e96", + "sortText": "00000e31", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63375,6 +61675,23 @@ "newText": "'Microsoft.StorageCache/caches/storageTargets@2020-03-01'" } }, + { + "label": "'Microsoft.StorageCache/caches/storageTargets@2020-10-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.StorageCache` \nType: `caches/storageTargets` \nAPI Version: `2020-10-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000e30", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.StorageCache/caches/storageTargets@2020-10-01'" + } + }, { "label": "'Microsoft.StorageCache/caches@2019-08-01-preview'", "kind": "class", @@ -63384,7 +61701,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e95", + "sortText": "00000e2f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63401,7 +61718,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e94", + "sortText": "00000e2e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63418,7 +61735,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e93", + "sortText": "00000e2d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63426,6 +61743,23 @@ "newText": "'Microsoft.StorageCache/caches@2020-03-01'" } }, + { + "label": "'Microsoft.StorageCache/caches@2020-10-01'", + "kind": "class", + "documentation": { + "kind": "markdown", + "value": "Namespace: `Microsoft.StorageCache` \nType: `caches` \nAPI Version: `2020-10-01`" + }, + "deprecated": false, + "preselect": false, + "sortText": "00000e2c", + "insertTextFormat": "plainText", + "insertTextMode": "asIs", + "textEdit": { + "range": {}, + "newText": "'Microsoft.StorageCache/caches@2020-10-01'" + } + }, { "label": "'Microsoft.StorageSync/storageSyncServices/privateEndpointConnections@2020-03-01'", "kind": "class", @@ -63435,7 +61769,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ea2", + "sortText": "00000e3d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63452,7 +61786,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eab", + "sortText": "00000e46", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63469,7 +61803,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eaa", + "sortText": "00000e45", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63486,7 +61820,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ea9", + "sortText": "00000e44", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63503,7 +61837,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ea8", + "sortText": "00000e43", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63520,7 +61854,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ea7", + "sortText": "00000e42", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63537,7 +61871,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ea6", + "sortText": "00000e41", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63554,7 +61888,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ea5", + "sortText": "00000e40", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63571,7 +61905,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ea4", + "sortText": "00000e3f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63588,7 +61922,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ea3", + "sortText": "00000e3e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63605,7 +61939,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ebd", + "sortText": "00000e58", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63622,7 +61956,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ebc", + "sortText": "00000e57", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63639,7 +61973,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ebb", + "sortText": "00000e56", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63656,7 +61990,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eba", + "sortText": "00000e55", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63673,7 +62007,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eb9", + "sortText": "00000e54", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63690,7 +62024,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eb8", + "sortText": "00000e53", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63707,7 +62041,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eb7", + "sortText": "00000e52", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63724,7 +62058,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eb6", + "sortText": "00000e51", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63741,7 +62075,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eb5", + "sortText": "00000e50", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63758,7 +62092,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ec6", + "sortText": "00000e61", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63775,7 +62109,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ec5", + "sortText": "00000e60", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63792,7 +62126,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ec4", + "sortText": "00000e5f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63809,7 +62143,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ec3", + "sortText": "00000e5e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63826,7 +62160,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ec2", + "sortText": "00000e5d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63843,7 +62177,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ec1", + "sortText": "00000e5c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63860,7 +62194,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ec0", + "sortText": "00000e5b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63877,7 +62211,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ebf", + "sortText": "00000e5a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63894,7 +62228,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ebe", + "sortText": "00000e59", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63911,7 +62245,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eb4", + "sortText": "00000e4f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63928,7 +62262,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eb3", + "sortText": "00000e4e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63945,7 +62279,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eb2", + "sortText": "00000e4d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63962,7 +62296,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eb1", + "sortText": "00000e4c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63979,7 +62313,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eb0", + "sortText": "00000e4b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -63996,7 +62330,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eaf", + "sortText": "00000e4a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64013,7 +62347,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eae", + "sortText": "00000e49", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64030,7 +62364,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ead", + "sortText": "00000e48", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64047,7 +62381,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eac", + "sortText": "00000e47", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64064,7 +62398,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ea1", + "sortText": "00000e3c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64081,7 +62415,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ea0", + "sortText": "00000e3b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64098,7 +62432,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e9f", + "sortText": "00000e3a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64115,7 +62449,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e9e", + "sortText": "00000e39", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64132,7 +62466,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e9d", + "sortText": "00000e38", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64149,7 +62483,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e9c", + "sortText": "00000e37", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64166,7 +62500,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e9b", + "sortText": "00000e36", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64183,7 +62517,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e9a", + "sortText": "00000e35", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64200,7 +62534,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000e99", + "sortText": "00000e34", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64217,7 +62551,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ee0", + "sortText": "00000e7b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64234,7 +62568,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000edf", + "sortText": "00000e7a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64251,7 +62585,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ee4", + "sortText": "00000e7f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64268,7 +62602,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ee3", + "sortText": "00000e7e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64285,7 +62619,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ee6", + "sortText": "00000e81", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64302,7 +62636,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ee5", + "sortText": "00000e80", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64319,7 +62653,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ee8", + "sortText": "00000e83", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64336,7 +62670,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ee7", + "sortText": "00000e82", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64353,7 +62687,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eea", + "sortText": "00000e85", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64370,7 +62704,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ee9", + "sortText": "00000e84", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64387,7 +62721,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ee2", + "sortText": "00000e7d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64404,7 +62738,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ee1", + "sortText": "00000e7c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64412,244 +62746,6 @@ "newText": "'Microsoft.StreamAnalytics/streamingjobs@2017-04-01-preview'" } }, - { - "label": "'Microsoft.Subscription/aliases@2019-10-01-preview'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Subscription` \nType: `aliases` \nAPI Version: `2019-10-01-preview`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000eec", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Subscription/aliases@2019-10-01-preview'" - } - }, - { - "label": "'Microsoft.Subscription/aliases@2020-09-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Subscription` \nType: `aliases` \nAPI Version: `2020-09-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000eeb", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Subscription/aliases@2020-09-01'" - } - }, - { - "label": "'Microsoft.Subscription/subscriptionDefinitions@2017-11-01-preview'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Subscription` \nType: `subscriptionDefinitions` \nAPI Version: `2017-11-01-preview`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000eed", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Subscription/subscriptionDefinitions@2017-11-01-preview'" - } - }, - { - "label": "'Microsoft.Subscriptions.Admin/directoryTenants@2015-11-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Subscriptions.Admin` \nType: `directoryTenants` \nAPI Version: `2015-11-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000eee", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Subscriptions.Admin/directoryTenants@2015-11-01'" - } - }, - { - "label": "'Microsoft.Subscriptions.Admin/locations@2015-11-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Subscriptions.Admin` \nType: `locations` \nAPI Version: `2015-11-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000eef", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Subscriptions.Admin/locations@2015-11-01'" - } - }, - { - "label": "'Microsoft.Subscriptions.Admin/offers/offerDelegations@2015-11-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Subscriptions.Admin` \nType: `offers/offerDelegations` \nAPI Version: `2015-11-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000ef1", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Subscriptions.Admin/offers/offerDelegations@2015-11-01'" - } - }, - { - "label": "'Microsoft.Subscriptions.Admin/offers@2015-11-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Subscriptions.Admin` \nType: `offers` \nAPI Version: `2015-11-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000ef0", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Subscriptions.Admin/offers@2015-11-01'" - } - }, - { - "label": "'Microsoft.Subscriptions.Admin/plans@2015-11-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Subscriptions.Admin` \nType: `plans` \nAPI Version: `2015-11-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000ef2", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Subscriptions.Admin/plans@2015-11-01'" - } - }, - { - "label": "'Microsoft.Subscriptions.Admin/subscriptions/acquiredPlans@2015-11-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Subscriptions.Admin` \nType: `subscriptions/acquiredPlans` \nAPI Version: `2015-11-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000ef4", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Subscriptions.Admin/subscriptions/acquiredPlans@2015-11-01'" - } - }, - { - "label": "'Microsoft.Subscriptions.Admin/subscriptions@2015-11-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Subscriptions.Admin` \nType: `subscriptions` \nAPI Version: `2015-11-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000ef3", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Subscriptions.Admin/subscriptions@2015-11-01'" - } - }, - { - "label": "'Microsoft.Support/supportTickets/communications@2019-05-01-preview'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Support` \nType: `supportTickets/communications` \nAPI Version: `2019-05-01-preview`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000ef8", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Support/supportTickets/communications@2019-05-01-preview'" - } - }, - { - "label": "'Microsoft.Support/supportTickets/communications@2020-04-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Support` \nType: `supportTickets/communications` \nAPI Version: `2020-04-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000ef7", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Support/supportTickets/communications@2020-04-01'" - } - }, - { - "label": "'Microsoft.Support/supportTickets@2019-05-01-preview'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Support` \nType: `supportTickets` \nAPI Version: `2019-05-01-preview`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000ef6", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Support/supportTickets@2019-05-01-preview'" - } - }, - { - "label": "'Microsoft.Support/supportTickets@2020-04-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Support` \nType: `supportTickets` \nAPI Version: `2020-04-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000ef5", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Support/supportTickets@2020-04-01'" - } - }, { "label": "'Microsoft.Synapse/privateLinkHubs@2019-06-01-preview'", "kind": "class", @@ -64659,7 +62755,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ef9", + "sortText": "00000e86", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64676,7 +62772,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000efb", + "sortText": "00000e88", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64693,7 +62789,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000efc", + "sortText": "00000e89", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64710,7 +62806,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000efd", + "sortText": "00000e8a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64727,7 +62823,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000efe", + "sortText": "00000e8b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64744,7 +62840,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000eff", + "sortText": "00000e8c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64761,7 +62857,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f00", + "sortText": "00000e8d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64778,7 +62874,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f01", + "sortText": "00000e8e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64795,7 +62891,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f02", + "sortText": "00000e8f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64812,7 +62908,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f03", + "sortText": "00000e90", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64829,7 +62925,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f04", + "sortText": "00000e91", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64846,7 +62942,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f05", + "sortText": "00000e92", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64863,7 +62959,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f08", + "sortText": "00000e95", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64880,7 +62976,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f0a", + "sortText": "00000e97", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64897,7 +62993,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f09", + "sortText": "00000e96", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64914,7 +63010,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f0b", + "sortText": "00000e98", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64931,7 +63027,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f0c", + "sortText": "00000e99", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64948,7 +63044,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f0d", + "sortText": "00000e9a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64965,7 +63061,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f0e", + "sortText": "00000e9b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64982,7 +63078,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f0f", + "sortText": "00000e9c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -64999,7 +63095,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f11", + "sortText": "00000e9e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65016,7 +63112,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f10", + "sortText": "00000e9d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65033,7 +63129,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f13", + "sortText": "00000ea0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65050,7 +63146,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f12", + "sortText": "00000e9f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65067,7 +63163,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f07", + "sortText": "00000e94", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65084,7 +63180,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f06", + "sortText": "00000e93", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65101,7 +63197,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f14", + "sortText": "00000ea1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65118,7 +63214,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000efa", + "sortText": "00000e87", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65135,7 +63231,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f1c", + "sortText": "00000ea9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65152,7 +63248,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f1b", + "sortText": "00000ea8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65169,7 +63265,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f1a", + "sortText": "00000ea7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65186,7 +63282,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f19", + "sortText": "00000ea6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65203,7 +63299,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f20", + "sortText": "00000ead", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65220,7 +63316,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f1f", + "sortText": "00000eac", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65237,7 +63333,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f1e", + "sortText": "00000eab", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65254,7 +63350,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f1d", + "sortText": "00000eaa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65271,7 +63367,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f24", + "sortText": "00000eb1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65288,7 +63384,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f23", + "sortText": "00000eb0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65305,7 +63401,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f22", + "sortText": "00000eaf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65322,7 +63418,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f21", + "sortText": "00000eae", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65339,7 +63435,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f18", + "sortText": "00000ea5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65356,7 +63452,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f17", + "sortText": "00000ea4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65373,7 +63469,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f16", + "sortText": "00000ea3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65390,7 +63486,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f15", + "sortText": "00000ea2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65407,7 +63503,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f2c", + "sortText": "00000eb9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65424,7 +63520,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f2d", + "sortText": "00000eba", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65441,7 +63537,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f2e", + "sortText": "00000ebb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65458,7 +63554,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f28", + "sortText": "00000eb5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65475,7 +63571,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f27", + "sortText": "00000eb4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65492,7 +63588,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f26", + "sortText": "00000eb3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65509,7 +63605,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f25", + "sortText": "00000eb2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65526,7 +63622,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f34", + "sortText": "00000ec1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65543,7 +63639,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f33", + "sortText": "00000ec0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65560,7 +63656,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f32", + "sortText": "00000ebf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65577,7 +63673,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f31", + "sortText": "00000ebe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65594,7 +63690,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f30", + "sortText": "00000ebd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65611,7 +63707,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f2f", + "sortText": "00000ebc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65628,7 +63724,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f35", + "sortText": "00000ec2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65645,7 +63741,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f36", + "sortText": "00000ec3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65662,7 +63758,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f40", + "sortText": "00000ecd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65679,7 +63775,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f3f", + "sortText": "00000ecc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65696,7 +63792,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f3e", + "sortText": "00000ecb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65713,7 +63809,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f3d", + "sortText": "00000eca", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65730,7 +63826,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f3c", + "sortText": "00000ec9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65747,7 +63843,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f45", + "sortText": "00000ed2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65764,7 +63860,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f44", + "sortText": "00000ed1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65781,7 +63877,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f43", + "sortText": "00000ed0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65798,7 +63894,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f42", + "sortText": "00000ecf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -65815,199 +63911,114 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f41", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Web/hostingEnvironments/workerPools@2020-06-01'" - } - }, - { - "label": "'Microsoft.Web/hostingEnvironments@2015-08-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments` \nAPI Version: `2015-08-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000f3b", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Web/hostingEnvironments@2015-08-01'" - } - }, - { - "label": "'Microsoft.Web/hostingEnvironments@2016-09-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments` \nAPI Version: `2016-09-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000f3a", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Web/hostingEnvironments@2016-09-01'" - } - }, - { - "label": "'Microsoft.Web/hostingEnvironments@2018-02-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments` \nAPI Version: `2018-02-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000f39", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Web/hostingEnvironments@2018-02-01'" - } - }, - { - "label": "'Microsoft.Web/hostingEnvironments@2019-08-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments` \nAPI Version: `2019-08-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000f38", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Web/hostingEnvironments@2019-08-01'" - } - }, - { - "label": "'Microsoft.Web/hostingEnvironments@2020-06-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments` \nAPI Version: `2020-06-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000f37", + "sortText": "00000ece", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Web/hostingEnvironments@2020-06-01'" + "newText": "'Microsoft.Web/hostingEnvironments/workerPools@2020-06-01'" } }, { - "label": "'Microsoft.Web/managedHostingEnvironments@2015-08-01'", + "label": "'Microsoft.Web/hostingEnvironments@2015-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Web` \nType: `managedHostingEnvironments` \nAPI Version: `2015-08-01`" + "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments` \nAPI Version: `2015-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000f46", + "sortText": "00000ec8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Web/managedHostingEnvironments@2015-08-01'" + "newText": "'Microsoft.Web/hostingEnvironments@2015-08-01'" } }, { - "label": "'Microsoft.Web/publishingUsers@2015-08-01'", + "label": "'Microsoft.Web/hostingEnvironments@2016-09-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Web` \nType: `publishingUsers` \nAPI Version: `2015-08-01`" + "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments` \nAPI Version: `2016-09-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000f4b", + "sortText": "00000ec7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Web/publishingUsers@2015-08-01'" + "newText": "'Microsoft.Web/hostingEnvironments@2016-09-01'" } }, { - "label": "'Microsoft.Web/publishingUsers@2016-03-01'", + "label": "'Microsoft.Web/hostingEnvironments@2018-02-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Web` \nType: `publishingUsers` \nAPI Version: `2016-03-01`" + "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments` \nAPI Version: `2018-02-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000f4a", + "sortText": "00000ec6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Web/publishingUsers@2016-03-01'" + "newText": "'Microsoft.Web/hostingEnvironments@2018-02-01'" } }, { - "label": "'Microsoft.Web/publishingUsers@2018-02-01'", + "label": "'Microsoft.Web/hostingEnvironments@2019-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Web` \nType: `publishingUsers` \nAPI Version: `2018-02-01`" + "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments` \nAPI Version: `2019-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000f49", + "sortText": "00000ec5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Web/publishingUsers@2018-02-01'" + "newText": "'Microsoft.Web/hostingEnvironments@2019-08-01'" } }, { - "label": "'Microsoft.Web/publishingUsers@2019-08-01'", + "label": "'Microsoft.Web/hostingEnvironments@2020-06-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Web` \nType: `publishingUsers` \nAPI Version: `2019-08-01`" + "value": "Namespace: `Microsoft.Web` \nType: `hostingEnvironments` \nAPI Version: `2020-06-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000f48", + "sortText": "00000ec4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Web/publishingUsers@2019-08-01'" + "newText": "'Microsoft.Web/hostingEnvironments@2020-06-01'" } }, { - "label": "'Microsoft.Web/publishingUsers@2020-06-01'", + "label": "'Microsoft.Web/managedHostingEnvironments@2015-08-01'", "kind": "class", "documentation": { "kind": "markdown", - "value": "Namespace: `Microsoft.Web` \nType: `publishingUsers` \nAPI Version: `2020-06-01`" + "value": "Namespace: `Microsoft.Web` \nType: `managedHostingEnvironments` \nAPI Version: `2015-08-01`" }, "deprecated": false, "preselect": false, - "sortText": "00000f47", + "sortText": "00000ed3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { "range": {}, - "newText": "'Microsoft.Web/publishingUsers@2020-06-01'" + "newText": "'Microsoft.Web/managedHostingEnvironments@2015-08-01'" } }, { @@ -66019,7 +64030,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f55", + "sortText": "00000edd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66036,7 +64047,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f54", + "sortText": "00000edc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66053,7 +64064,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f53", + "sortText": "00000edb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66070,7 +64081,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f52", + "sortText": "00000eda", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66087,7 +64098,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f51", + "sortText": "00000ed9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66104,7 +64115,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f5a", + "sortText": "00000ee2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66121,7 +64132,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f59", + "sortText": "00000ee1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66138,7 +64149,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f58", + "sortText": "00000ee0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66155,7 +64166,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f57", + "sortText": "00000edf", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66172,7 +64183,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f56", + "sortText": "00000ede", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66189,7 +64200,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f50", + "sortText": "00000ed8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66206,7 +64217,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f4f", + "sortText": "00000ed7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66223,7 +64234,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f4e", + "sortText": "00000ed6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66240,7 +64251,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f4d", + "sortText": "00000ed5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66257,7 +64268,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f4c", + "sortText": "00000ed4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66274,7 +64285,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f62", + "sortText": "00000eea", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66291,7 +64302,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f61", + "sortText": "00000ee9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66308,7 +64319,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f68", + "sortText": "00000ef0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66325,7 +64336,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f67", + "sortText": "00000eef", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66342,7 +64353,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f66", + "sortText": "00000eee", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66359,7 +64370,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f65", + "sortText": "00000eed", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66376,7 +64387,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f64", + "sortText": "00000eec", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66393,7 +64404,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f63", + "sortText": "00000eeb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66410,7 +64421,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f6d", + "sortText": "00000ef5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66427,7 +64438,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f6c", + "sortText": "00000ef4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66444,7 +64455,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f6b", + "sortText": "00000ef3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66461,7 +64472,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f6a", + "sortText": "00000ef2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66478,7 +64489,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f69", + "sortText": "00000ef1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66495,7 +64506,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f72", + "sortText": "00000efa", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66512,7 +64523,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f71", + "sortText": "00000ef9", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66529,7 +64540,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f70", + "sortText": "00000ef8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66546,7 +64557,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f6f", + "sortText": "00000ef7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66563,7 +64574,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f6e", + "sortText": "00000ef6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66580,7 +64591,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f7a", + "sortText": "00000f02", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66597,7 +64608,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f79", + "sortText": "00000f01", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66614,7 +64625,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f78", + "sortText": "00000f00", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66631,7 +64642,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f77", + "sortText": "00000eff", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66648,7 +64659,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f76", + "sortText": "00000efe", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66665,7 +64676,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f75", + "sortText": "00000efd", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66682,7 +64693,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f74", + "sortText": "00000efc", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66699,7 +64710,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f73", + "sortText": "00000efb", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66716,7 +64727,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f80", + "sortText": "00000f08", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66733,7 +64744,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f7f", + "sortText": "00000f07", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66750,7 +64761,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f7e", + "sortText": "00000f06", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66767,7 +64778,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f7d", + "sortText": "00000f05", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66784,7 +64795,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f7c", + "sortText": "00000f04", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66801,7 +64812,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f7b", + "sortText": "00000f03", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66818,7 +64829,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f8b", + "sortText": "00000f13", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66835,7 +64846,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f8a", + "sortText": "00000f12", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66852,7 +64863,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f89", + "sortText": "00000f11", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66869,7 +64880,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f88", + "sortText": "00000f10", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66886,7 +64897,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f87", + "sortText": "00000f0f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66903,7 +64914,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f86", + "sortText": "00000f0e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66920,7 +64931,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f85", + "sortText": "00000f0d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66937,7 +64948,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f84", + "sortText": "00000f0c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66954,7 +64965,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f83", + "sortText": "00000f0b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66971,7 +64982,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f82", + "sortText": "00000f0a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -66988,7 +64999,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f81", + "sortText": "00000f09", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67005,7 +65016,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f8c", + "sortText": "00000f14", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67022,7 +65033,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f91", + "sortText": "00000f19", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67039,7 +65050,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f90", + "sortText": "00000f18", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67056,7 +65067,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f8f", + "sortText": "00000f17", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67073,7 +65084,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f8e", + "sortText": "00000f16", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67090,7 +65101,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f8d", + "sortText": "00000f15", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67107,7 +65118,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f95", + "sortText": "00000f1d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67124,7 +65135,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f94", + "sortText": "00000f1c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67141,7 +65152,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f93", + "sortText": "00000f1b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67158,7 +65169,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f92", + "sortText": "00000f1a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67175,7 +65186,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f9b", + "sortText": "00000f23", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67192,7 +65203,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f9a", + "sortText": "00000f22", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67209,7 +65220,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f99", + "sortText": "00000f21", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67226,7 +65237,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f98", + "sortText": "00000f20", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67243,7 +65254,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f97", + "sortText": "00000f1f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67260,7 +65271,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f96", + "sortText": "00000f1e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67277,7 +65288,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f9f", + "sortText": "00000f27", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67294,7 +65305,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f9e", + "sortText": "00000f26", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67311,7 +65322,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f9d", + "sortText": "00000f25", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67328,7 +65339,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f9c", + "sortText": "00000f24", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67345,7 +65356,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fa1", + "sortText": "00000f29", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67362,7 +65373,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fa0", + "sortText": "00000f28", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67379,7 +65390,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fa6", + "sortText": "00000f2e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67396,7 +65407,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fa5", + "sortText": "00000f2d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67413,7 +65424,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fa4", + "sortText": "00000f2c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67430,7 +65441,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fa3", + "sortText": "00000f2b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67447,7 +65458,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fa2", + "sortText": "00000f2a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67464,7 +65475,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fae", + "sortText": "00000f36", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67481,7 +65492,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fad", + "sortText": "00000f35", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67498,7 +65509,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fb4", + "sortText": "00000f3c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67515,7 +65526,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fb3", + "sortText": "00000f3b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67532,7 +65543,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fb2", + "sortText": "00000f3a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67549,7 +65560,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fb1", + "sortText": "00000f39", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67566,7 +65577,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fb0", + "sortText": "00000f38", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67583,7 +65594,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000faf", + "sortText": "00000f37", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67600,7 +65611,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fb9", + "sortText": "00000f41", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67617,7 +65628,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fb8", + "sortText": "00000f40", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67634,7 +65645,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fb7", + "sortText": "00000f3f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67651,7 +65662,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fb6", + "sortText": "00000f3e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67668,7 +65679,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fb5", + "sortText": "00000f3d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67685,7 +65696,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fbe", + "sortText": "00000f46", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67702,7 +65713,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fbd", + "sortText": "00000f45", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67719,7 +65730,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fbc", + "sortText": "00000f44", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67736,7 +65747,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fbb", + "sortText": "00000f43", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67753,7 +65764,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fba", + "sortText": "00000f42", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67770,7 +65781,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fc6", + "sortText": "00000f4e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67787,7 +65798,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fc5", + "sortText": "00000f4d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67804,7 +65815,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fc4", + "sortText": "00000f4c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67821,7 +65832,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fc3", + "sortText": "00000f4b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67838,7 +65849,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fc2", + "sortText": "00000f4a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67855,7 +65866,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fc1", + "sortText": "00000f49", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67872,7 +65883,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fc0", + "sortText": "00000f48", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67889,7 +65900,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fbf", + "sortText": "00000f47", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67906,7 +65917,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fcc", + "sortText": "00000f54", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67923,7 +65934,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fcb", + "sortText": "00000f53", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67940,7 +65951,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fca", + "sortText": "00000f52", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67957,7 +65968,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fc9", + "sortText": "00000f51", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67974,7 +65985,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fc8", + "sortText": "00000f50", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -67991,7 +66002,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fc7", + "sortText": "00000f4f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68008,7 +66019,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fd7", + "sortText": "00000f5f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68025,7 +66036,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fd6", + "sortText": "00000f5e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68042,7 +66053,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fd5", + "sortText": "00000f5d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68059,7 +66070,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fd4", + "sortText": "00000f5c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68076,7 +66087,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fd3", + "sortText": "00000f5b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68093,7 +66104,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fd2", + "sortText": "00000f5a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68110,7 +66121,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fd1", + "sortText": "00000f59", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68127,7 +66138,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fd0", + "sortText": "00000f58", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68144,7 +66155,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fcf", + "sortText": "00000f57", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68161,7 +66172,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fce", + "sortText": "00000f56", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68178,7 +66189,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fcd", + "sortText": "00000f55", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68195,7 +66206,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fd8", + "sortText": "00000f60", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68212,7 +66223,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fdd", + "sortText": "00000f65", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68229,7 +66240,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fdc", + "sortText": "00000f64", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68246,7 +66257,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fdb", + "sortText": "00000f63", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68263,7 +66274,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fda", + "sortText": "00000f62", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68280,7 +66291,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fd9", + "sortText": "00000f61", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68297,7 +66308,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fe1", + "sortText": "00000f69", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68314,7 +66325,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fe0", + "sortText": "00000f68", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68331,7 +66342,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fdf", + "sortText": "00000f67", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68348,7 +66359,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fde", + "sortText": "00000f66", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68365,7 +66376,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fe7", + "sortText": "00000f6f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68382,7 +66393,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fe6", + "sortText": "00000f6e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68399,7 +66410,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fe5", + "sortText": "00000f6d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68416,7 +66427,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fe4", + "sortText": "00000f6c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68433,7 +66444,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fe3", + "sortText": "00000f6b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68450,7 +66461,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fe2", + "sortText": "00000f6a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68467,7 +66478,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000feb", + "sortText": "00000f73", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68484,7 +66495,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fea", + "sortText": "00000f72", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68501,7 +66512,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fe9", + "sortText": "00000f71", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68518,7 +66529,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fe8", + "sortText": "00000f70", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68535,7 +66546,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ff0", + "sortText": "00000f78", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68552,7 +66563,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fef", + "sortText": "00000f77", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68569,7 +66580,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fee", + "sortText": "00000f76", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68586,7 +66597,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fed", + "sortText": "00000f75", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68603,7 +66614,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fec", + "sortText": "00000f74", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68620,7 +66631,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ff6", + "sortText": "00000f7e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68637,7 +66648,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ff5", + "sortText": "00000f7d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68654,7 +66665,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ff4", + "sortText": "00000f7c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68671,7 +66682,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ff3", + "sortText": "00000f7b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68688,7 +66699,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ff2", + "sortText": "00000f7a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68705,7 +66716,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ff1", + "sortText": "00000f79", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68722,7 +66733,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00001002", + "sortText": "00000f8a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68739,7 +66750,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00001001", + "sortText": "00000f89", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68756,7 +66767,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00001000", + "sortText": "00000f88", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68773,7 +66784,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fff", + "sortText": "00000f87", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68790,7 +66801,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ffe", + "sortText": "00000f86", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68807,7 +66818,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ffd", + "sortText": "00000f85", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68824,7 +66835,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ffc", + "sortText": "00000f84", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68841,7 +66852,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ffb", + "sortText": "00000f83", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68858,7 +66869,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ffa", + "sortText": "00000f82", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68875,7 +66886,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ff9", + "sortText": "00000f81", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68892,7 +66903,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ff8", + "sortText": "00000f80", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68909,7 +66920,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000ff7", + "sortText": "00000f7f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68926,7 +66937,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fac", + "sortText": "00000f34", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68943,7 +66954,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fab", + "sortText": "00000f33", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68960,7 +66971,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000faa", + "sortText": "00000f32", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68977,7 +66988,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fa9", + "sortText": "00000f31", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -68994,7 +67005,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fa8", + "sortText": "00000f30", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69011,7 +67022,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000fa7", + "sortText": "00000f2f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69028,7 +67039,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00001008", + "sortText": "00000f90", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69045,7 +67056,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00001007", + "sortText": "00000f8f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69062,7 +67073,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00001006", + "sortText": "00000f8e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69079,7 +67090,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00001005", + "sortText": "00000f8d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69096,7 +67107,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00001004", + "sortText": "00000f8c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69113,7 +67124,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00001003", + "sortText": "00000f8b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69130,7 +67141,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00001014", + "sortText": "00000f9c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69147,7 +67158,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00001013", + "sortText": "00000f9b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69164,7 +67175,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00001012", + "sortText": "00000f9a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69181,7 +67192,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00001011", + "sortText": "00000f99", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69198,7 +67209,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00001010", + "sortText": "00000f98", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69215,7 +67226,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000100f", + "sortText": "00000f97", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69232,7 +67243,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000100e", + "sortText": "00000f96", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69249,7 +67260,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000100d", + "sortText": "00000f95", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69266,7 +67277,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000100c", + "sortText": "00000f94", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69283,7 +67294,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000100b", + "sortText": "00000f93", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69300,7 +67311,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000100a", + "sortText": "00000f92", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69317,7 +67328,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00001009", + "sortText": "00000f91", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69334,7 +67345,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f60", + "sortText": "00000ee8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69351,7 +67362,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f5f", + "sortText": "00000ee7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69368,7 +67379,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f5e", + "sortText": "00000ee6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69385,7 +67396,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f5d", + "sortText": "00000ee5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69402,7 +67413,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f5c", + "sortText": "00000ee4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69419,7 +67430,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f5b", + "sortText": "00000ee3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69427,91 +67438,6 @@ "newText": "'Microsoft.Web/sites@2020-06-01'" } }, - { - "label": "'Microsoft.Web/sourcecontrols@2015-08-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Web` \nType: `sourcecontrols` \nAPI Version: `2015-08-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00001019", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Web/sourcecontrols@2015-08-01'" - } - }, - { - "label": "'Microsoft.Web/sourcecontrols@2016-03-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Web` \nType: `sourcecontrols` \nAPI Version: `2016-03-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00001018", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Web/sourcecontrols@2016-03-01'" - } - }, - { - "label": "'Microsoft.Web/sourcecontrols@2018-02-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Web` \nType: `sourcecontrols` \nAPI Version: `2018-02-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00001017", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Web/sourcecontrols@2018-02-01'" - } - }, - { - "label": "'Microsoft.Web/sourcecontrols@2019-08-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Web` \nType: `sourcecontrols` \nAPI Version: `2019-08-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00001016", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Web/sourcecontrols@2019-08-01'" - } - }, - { - "label": "'Microsoft.Web/sourcecontrols@2020-06-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.Web` \nType: `sourcecontrols` \nAPI Version: `2020-06-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00001015", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.Web/sourcecontrols@2020-06-01'" - } - }, { "label": "'Microsoft.Web/staticSites/builds/config@2019-08-01'", "kind": "class", @@ -69521,7 +67447,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000101d", + "sortText": "00000fa0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69538,7 +67464,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000101c", + "sortText": "00000f9f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69555,7 +67481,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000101f", + "sortText": "00000fa2", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69572,7 +67498,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000101e", + "sortText": "00000fa1", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69589,7 +67515,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000101b", + "sortText": "00000f9e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69606,7 +67532,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000101a", + "sortText": "00000f9d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69623,7 +67549,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00001020", + "sortText": "00000fa3", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69640,7 +67566,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00001022", + "sortText": "00000fa5", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69657,7 +67583,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00001021", + "sortText": "00000fa4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69665,23 +67591,6 @@ "newText": "'Microsoft.WindowsIoT/deviceServices@2019-06-01'" } }, - { - "label": "'Microsoft.WorkloadMonitor/notificationSettings@2018-08-31-preview'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `Microsoft.WorkloadMonitor` \nType: `notificationSettings` \nAPI Version: `2018-08-31-preview`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00001023", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'Microsoft.WorkloadMonitor/notificationSettings@2018-08-31-preview'" - } - }, { "label": "'microsoft.aadiam/azureADMetrics@2020-07-01-preview'", "kind": "class", @@ -69699,23 +67608,6 @@ "newText": "'microsoft.aadiam/azureADMetrics@2020-07-01-preview'" } }, - { - "label": "'microsoft.aadiam/diagnosticSettings@2017-04-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `microsoft.aadiam` \nType: `diagnosticSettings` \nAPI Version: `2017-04-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "00000006", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'microsoft.aadiam/diagnosticSettings@2017-04-01'" - } - }, { "label": "'microsoft.aadiam/privateLinkForAzureAd@2020-03-01-preview'", "kind": "class", @@ -69725,7 +67617,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000007", + "sortText": "00000006", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69742,7 +67634,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000000f", + "sortText": "0000000e", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69759,7 +67651,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "0000000e", + "sortText": "0000000d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69776,7 +67668,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005b8", + "sortText": "00000587", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69793,7 +67685,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005b7", + "sortText": "00000586", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69810,7 +67702,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005b6", + "sortText": "00000585", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69827,7 +67719,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005b5", + "sortText": "00000584", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69844,7 +67736,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005b4", + "sortText": "00000583", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69861,7 +67753,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005ba", + "sortText": "00000589", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69878,7 +67770,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005b9", + "sortText": "00000588", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69895,7 +67787,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005bb", + "sortText": "0000058a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69912,7 +67804,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005bc", + "sortText": "0000058b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69929,7 +67821,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005c0", + "sortText": "0000058f", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69946,7 +67838,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005c3", + "sortText": "00000592", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69963,7 +67855,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005c4", + "sortText": "00000593", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69980,7 +67872,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005c5", + "sortText": "00000594", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -69997,7 +67889,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005cd", + "sortText": "0000059b", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -70014,7 +67906,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005cc", + "sortText": "0000059a", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -70031,7 +67923,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005cb", + "sortText": "00000599", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -70039,23 +67931,6 @@ "newText": "'microsoft.insights/diagnosticSettings@2017-05-01-preview'" } }, - { - "label": "'microsoft.insights/diagnosticSettings@2020-01-01-preview'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `microsoft.insights` \nType: `diagnosticSettings` \nAPI Version: `2020-01-01-preview`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000005ca", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'microsoft.insights/diagnosticSettings@2020-01-01-preview'" - } - }, { "label": "'microsoft.insights/guestDiagnosticSettings@2018-06-01-preview'", "kind": "class", @@ -70065,7 +67940,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005ce", + "sortText": "0000059c", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -70082,7 +67957,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005cf", + "sortText": "0000059d", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -70090,23 +67965,6 @@ "newText": "'microsoft.insights/guestDiagnosticSettingsAssociation@2018-06-01-preview'" } }, - { - "label": "'microsoft.insights/logprofiles@2016-03-01'", - "kind": "class", - "documentation": { - "kind": "markdown", - "value": "Namespace: `microsoft.insights` \nType: `logprofiles` \nAPI Version: `2016-03-01`" - }, - "deprecated": false, - "preselect": false, - "sortText": "000005d0", - "insertTextFormat": "plainText", - "insertTextMode": "asIs", - "textEdit": { - "range": {}, - "newText": "'microsoft.insights/logprofiles@2016-03-01'" - } - }, { "label": "'microsoft.insights/privateLinkScopes@2019-10-17-preview'", "kind": "class", @@ -70116,7 +67974,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005d3", + "sortText": "000005a0", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -70133,7 +67991,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005d7", + "sortText": "000005a4", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -70150,7 +68008,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005da", + "sortText": "000005a7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -70167,7 +68025,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005d9", + "sortText": "000005a6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -70184,7 +68042,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "000005db", + "sortText": "000005a8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -70201,7 +68059,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f2a", + "sortText": "00000eb7", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -70218,7 +68076,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f2b", + "sortText": "00000eb8", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { @@ -70235,7 +68093,7 @@ }, "deprecated": false, "preselect": false, - "sortText": "00000f29", + "sortText": "00000eb6", "insertTextFormat": "plainText", "insertTextMode": "asIs", "textEdit": { diff --git a/src/Bicep.Core.UnitTests/TypeSystem/Az/AzResourceTypeProviderTests.cs b/src/Bicep.Core.UnitTests/TypeSystem/Az/AzResourceTypeProviderTests.cs index a5bc28f7eb0..8f90a12b08f 100644 --- a/src/Bicep.Core.UnitTests/TypeSystem/Az/AzResourceTypeProviderTests.cs +++ b/src/Bicep.Core.UnitTests/TypeSystem/Az/AzResourceTypeProviderTests.cs @@ -22,19 +22,24 @@ namespace Bicep.Core.UnitTests.TypeSystem.Az [TestClass] public class AzResourceTypeProviderTests { - [TestMethod] - public void AzResourceTypeProvider_can_deserialize_all_types_without_throwing() + [DataTestMethod] + [DataRow(ResourceScopeType.TenantScope)] + [DataRow(ResourceScopeType.ManagementGroupScope)] + [DataRow(ResourceScopeType.SubscriptionScope)] + [DataRow(ResourceScopeType.ResourceGroupScope)] + public void AzResourceTypeProvider_can_deserialize_all_types_without_throwing(ResourceScopeType scopeType) { var resourceTypeProvider = new AzResourceTypeProvider(); - var availableTypes = resourceTypeProvider.GetAvailableTypes(); + var availableTypes = resourceTypeProvider.GetAvailableTypes(scopeType); // sanity check - we know there should be a lot of types available - availableTypes.Should().HaveCountGreaterThan(2000); + var expectedTypeCount = scopeType == ResourceScopeType.ResourceGroupScope ? 2000 : 100; + availableTypes.Should().HaveCountGreaterThan(expectedTypeCount); foreach (var availableType in availableTypes) { - resourceTypeProvider.HasType(availableType).Should().BeTrue(); - var knownResourceType = resourceTypeProvider.GetType(availableType); + resourceTypeProvider.HasType(scopeType, availableType).Should().BeTrue(); + var knownResourceType = resourceTypeProvider.GetType(scopeType, availableType); try { @@ -48,11 +53,16 @@ public void AzResourceTypeProvider_can_deserialize_all_types_without_throwing() } } - [TestMethod] - public void AzResourceTypeProvider_can_list_all_types_without_throwing() + [DataTestMethod] + [DataRow(ResourceScopeType.TenantScope)] + [DataRow(ResourceScopeType.ManagementGroupScope)] + [DataRow(ResourceScopeType.SubscriptionScope)] + [DataRow(ResourceScopeType.ResourceGroupScope)] + public void AzResourceTypeProvider_can_list_all_types_without_throwing(ResourceScopeType scopeType) + { var resourceTypeProvider = new AzResourceTypeProvider(); - var availableTypes = resourceTypeProvider.GetAvailableTypes(); + var availableTypes = resourceTypeProvider.GetAvailableTypes(scopeType); // sanity check - we know there should be a lot of types available availableTypes.Should().HaveCountGreaterThan(2000); @@ -199,11 +209,16 @@ private static ITypeLoader CreateMockTypeLoader(ResourceTypeReference resourceTy var mockTypeLocation = new TypeLocation(); var mockTypeLoader = new Mock(); - mockTypeLoader.Setup(x => x.ListAllAvailableTypes()).Returns( - new Dictionary - { - [resourceTypeReference.FormatName()] = mockTypeLocation, - }); + var resourceTypes = new Dictionary + { + [resourceTypeReference.FormatName()] = mockTypeLocation, + }; + mockTypeLoader.Setup(x => x.GetIndexedTypes()).Returns(new Azure.Bicep.Types.Az.Index.IndexedTypes( + resourceTypes, + resourceTypes, + resourceTypes, + resourceTypes, + resourceTypes)); mockTypeLoader.Setup(x => x.LoadResourceType(mockTypeLocation)).Returns(resourceType); return mockTypeLoader.Object; diff --git a/src/Bicep.Core.UnitTests/Utils/ResourceTypeProviderHelper.cs b/src/Bicep.Core.UnitTests/Utils/ResourceTypeProviderHelper.cs index 56d36e29954..88109d33bb9 100644 --- a/src/Bicep.Core.UnitTests/Utils/ResourceTypeProviderHelper.cs +++ b/src/Bicep.Core.UnitTests/Utils/ResourceTypeProviderHelper.cs @@ -24,13 +24,13 @@ public MockResourceTypeProvider(IEnumerable definedTypes) ResourceTypeReferenceComparer.Instance); } - public IEnumerable GetAvailableTypes() + public IEnumerable GetAvailableTypes(ResourceScopeType scopeType) => typeDictionary.Keys; - public ResourceType GetType(ResourceTypeReference reference) + public ResourceType GetType(ResourceScopeType scopeType, ResourceTypeReference reference) => typeDictionary[reference]; - public bool HasType(ResourceTypeReference typeReference) + public bool HasType(ResourceScopeType scopeType, ResourceTypeReference typeReference) => typeDictionary.ContainsKey(typeReference); } diff --git a/src/Bicep.Core.UnitTests/Utils/TestResourceTypeProvider.cs b/src/Bicep.Core.UnitTests/Utils/TestResourceTypeProvider.cs index bb30ca1d5f6..4c729703e18 100644 --- a/src/Bicep.Core.UnitTests/Utils/TestResourceTypeProvider.cs +++ b/src/Bicep.Core.UnitTests/Utils/TestResourceTypeProvider.cs @@ -11,13 +11,13 @@ namespace Bicep.Core.UnitTests.Utils { public class TestResourceTypeProvider : IResourceTypeProvider { - public ResourceType GetType(ResourceTypeReference reference) + public ResourceType GetType(ResourceScopeType scopeType, ResourceTypeReference reference) => new ResourceType(reference, new NamedObjectType(reference.FormatName(), TypeSymbolValidationFlags.Default, LanguageConstants.CreateResourceProperties(reference), null)); - public bool HasType(ResourceTypeReference typeReference) + public bool HasType(ResourceScopeType scopeType, ResourceTypeReference typeReference) => true; - public IEnumerable GetAvailableTypes() + public IEnumerable GetAvailableTypes(ResourceScopeType scopeType) => Enumerable.Empty(); public static IResourceTypeProvider Create() diff --git a/src/Bicep.Core/Bicep.Core.csproj b/src/Bicep.Core/Bicep.Core.csproj index 50a4544d8ac..025ebc73244 100644 --- a/src/Bicep.Core/Bicep.Core.csproj +++ b/src/Bicep.Core/Bicep.Core.csproj @@ -11,8 +11,8 @@ - - + + \ No newline at end of file diff --git a/src/Bicep.Core/Syntax/ResourceDeclarationSyntax.cs b/src/Bicep.Core/Syntax/ResourceDeclarationSyntax.cs index 3dde2c9a8ed..f6f54d8caf5 100644 --- a/src/Bicep.Core/Syntax/ResourceDeclarationSyntax.cs +++ b/src/Bicep.Core/Syntax/ResourceDeclarationSyntax.cs @@ -5,6 +5,7 @@ using Bicep.Core.Navigation; using Bicep.Core.Parsing; using Bicep.Core.Resources; +using Bicep.Core.Semantics; using Bicep.Core.TypeSystem; namespace Bicep.Core.Syntax @@ -48,7 +49,7 @@ public ResourceDeclarationSyntax(Token keyword, IdentifierSyntax name, SyntaxBas public StringSyntax? TypeString => Type as StringSyntax; - public TypeSymbol GetDeclaredType(IResourceTypeProvider resourceTypeProvider) + public TypeSymbol GetDeclaredType(ResourceScopeType targetScope, IResourceTypeProvider resourceTypeProvider) { var stringSyntax = this.TypeString; @@ -71,7 +72,7 @@ public TypeSymbol GetDeclaredType(IResourceTypeProvider resourceTypeProvider) return ErrorType.Create(DiagnosticBuilder.ForPosition(this.Type).InvalidResourceType()); } - return resourceTypeProvider.GetType(typeReference); + return resourceTypeProvider.GetType(targetScope, typeReference); } } } diff --git a/src/Bicep.Core/TypeSystem/Az/AzResourceTypeProvider.cs b/src/Bicep.Core/TypeSystem/Az/AzResourceTypeProvider.cs index d98e59e1ed1..3d266b50ea9 100644 --- a/src/Bicep.Core/TypeSystem/Az/AzResourceTypeProvider.cs +++ b/src/Bicep.Core/TypeSystem/Az/AzResourceTypeProvider.cs @@ -11,7 +11,7 @@ public class AzResourceTypeProvider : IResourceTypeProvider { private readonly ITypeLoader typeLoader; private readonly AzResourceTypeFactory resourceTypeFactory; - private readonly IReadOnlyDictionary availableResourceTypes; + private readonly IReadOnlyDictionary> availableResourceTypes; private readonly IDictionary loadedTypeCache; public AzResourceTypeProvider() @@ -19,25 +19,41 @@ public AzResourceTypeProvider() { } - public AzResourceTypeProvider(ITypeLoader typeLoader) + private static IReadOnlyDictionary> GetAvailableResourceTypes(ITypeLoader typeLoader) { - this.typeLoader = typeLoader; - this.resourceTypeFactory = new AzResourceTypeFactory(); - this.availableResourceTypes = typeLoader.ListAllAvailableTypes().ToDictionary( + IReadOnlyDictionary ToResourceReferenceDictionary(IReadOnlyDictionary typeDict) + => typeDict.ToDictionary( kvp => ResourceTypeReference.Parse(kvp.Key), kvp => kvp.Value, ResourceTypeReferenceComparer.Instance); + + var availableResourceTypes = new Dictionary>(); + var indexedTypes = typeLoader.GetIndexedTypes(); + availableResourceTypes[ResourceScopeType.TenantScope] = ToResourceReferenceDictionary(indexedTypes.Tenant); + availableResourceTypes[ResourceScopeType.ManagementGroupScope] = ToResourceReferenceDictionary(indexedTypes.ManagementGroup); + availableResourceTypes[ResourceScopeType.SubscriptionScope] = ToResourceReferenceDictionary(indexedTypes.Subscription); + availableResourceTypes[ResourceScopeType.ResourceGroupScope] = ToResourceReferenceDictionary(indexedTypes.ResourceGroup); + availableResourceTypes[ResourceScopeType.ResourceScope] = ToResourceReferenceDictionary(indexedTypes.Extension); + + return availableResourceTypes; + } + + public AzResourceTypeProvider(ITypeLoader typeLoader) + { + this.typeLoader = typeLoader; + this.resourceTypeFactory = new AzResourceTypeFactory(); + this.availableResourceTypes = GetAvailableResourceTypes(typeLoader); this.loadedTypeCache = new Dictionary(ResourceTypeReferenceComparer.Instance); } - public ResourceType GetType(ResourceTypeReference typeReference) + public ResourceType GetType(ResourceScopeType scopeType, ResourceTypeReference typeReference) { if (loadedTypeCache.TryGetValue(typeReference, out var resourceType)) { return resourceType; } - if (availableResourceTypes.TryGetValue(typeReference, out var typeLocation)) + if (availableResourceTypes[scopeType].TryGetValue(typeReference, out var typeLocation)) { // It's important to cache this result because LoadResourceType is an expensive operation, and // duplicating types means the resourceTypeFactor won't be able to use its cache. @@ -54,10 +70,10 @@ public ResourceType GetType(ResourceTypeReference typeReference) return resourceType; } - public bool HasType(ResourceTypeReference typeReference) - => availableResourceTypes.ContainsKey(typeReference); + public bool HasType(ResourceScopeType scopeType, ResourceTypeReference typeReference) + => availableResourceTypes[scopeType].ContainsKey(typeReference); - public IEnumerable GetAvailableTypes() - => availableResourceTypes.Keys; + public IEnumerable GetAvailableTypes(ResourceScopeType scopeType) + => availableResourceTypes[scopeType].Keys; } } \ No newline at end of file diff --git a/src/Bicep.Core/TypeSystem/DeclaredTypeManager.cs b/src/Bicep.Core/TypeSystem/DeclaredTypeManager.cs index ff05bd8a018..e47376cc347 100644 --- a/src/Bicep.Core/TypeSystem/DeclaredTypeManager.cs +++ b/src/Bicep.Core/TypeSystem/DeclaredTypeManager.cs @@ -102,7 +102,7 @@ public DeclaredTypeManager(IResourceTypeProvider resourceTypeProvider, TypeManag private DeclaredTypeAssignment GetParameterType(ParameterDeclarationSyntax syntax) => new DeclaredTypeAssignment(syntax.GetDeclaredType(), syntax); - private DeclaredTypeAssignment GetResourceType(ResourceDeclarationSyntax syntax) => new DeclaredTypeAssignment(syntax.GetDeclaredType(this.resourceTypeProvider), syntax); + private DeclaredTypeAssignment GetResourceType(ResourceDeclarationSyntax syntax) => new DeclaredTypeAssignment(syntax.GetDeclaredType(binder.TargetScope, this.resourceTypeProvider), syntax); private DeclaredTypeAssignment GetModuleType(ModuleDeclarationSyntax syntax) { diff --git a/src/Bicep.Core/TypeSystem/IResourceTypeProvider.cs b/src/Bicep.Core/TypeSystem/IResourceTypeProvider.cs index c12bd580b9e..671440963ba 100644 --- a/src/Bicep.Core/TypeSystem/IResourceTypeProvider.cs +++ b/src/Bicep.Core/TypeSystem/IResourceTypeProvider.cs @@ -8,10 +8,10 @@ namespace Bicep.Core.TypeSystem { public interface IResourceTypeProvider { - ResourceType GetType(ResourceTypeReference reference); + ResourceType GetType(ResourceScopeType scopeType, ResourceTypeReference reference); - bool HasType(ResourceTypeReference typeReference); + bool HasType(ResourceScopeType scopeType, ResourceTypeReference typeReference); - IEnumerable GetAvailableTypes(); + IEnumerable GetAvailableTypes(ResourceScopeType scopeType); } } \ No newline at end of file diff --git a/src/Bicep.Core/TypeSystem/TypeAssignmentVisitor.cs b/src/Bicep.Core/TypeSystem/TypeAssignmentVisitor.cs index 30defb34608..dbb01457edf 100644 --- a/src/Bicep.Core/TypeSystem/TypeAssignmentVisitor.cs +++ b/src/Bicep.Core/TypeSystem/TypeAssignmentVisitor.cs @@ -124,13 +124,13 @@ private void AssignTypeWithDiagnostics(SyntaxBase syntax, Func AssignTypeWithDiagnostics(syntax, diagnostics => { - var declaredType = syntax.GetDeclaredType(resourceTypeProvider); + var declaredType = syntax.GetDeclaredType(binder.TargetScope, resourceTypeProvider); if (declaredType is ErrorType) { return declaredType; } - if (declaredType is ResourceType resourceType && !resourceTypeProvider.HasType(resourceType.TypeReference)) + if (declaredType is ResourceType resourceType && !resourceTypeProvider.HasType(binder.TargetScope, resourceType.TypeReference)) { diagnostics.Write(DiagnosticBuilder.ForPosition(syntax.Type).ResourceTypesUnavailable(resourceType.TypeReference)); } diff --git a/src/Bicep.LangServer/Completions/BicepCompletionProvider.cs b/src/Bicep.LangServer/Completions/BicepCompletionProvider.cs index 5d921eceacc..a617928e22d 100644 --- a/src/Bicep.LangServer/Completions/BicepCompletionProvider.cs +++ b/src/Bicep.LangServer/Completions/BicepCompletionProvider.cs @@ -161,7 +161,7 @@ private IEnumerable GetResourceTypeCompletions(SemanticModel mod // we need to ensure that Microsoft.Compute/virtualMachines@whatever comes before Microsoft.Compute/virtualMachines/extensions@whatever // similarly, newest api versions should be shown first - return model.Compilation.ResourceTypeProvider.GetAvailableTypes() + return model.Compilation.ResourceTypeProvider.GetAvailableTypes(model.TargetScope) .OrderBy(rt => rt.FullyQualifiedType, StringComparer.OrdinalIgnoreCase) .ThenByDescending(rt => rt.ApiVersion) .Select((reference, index) => CreateResourceTypeCompletion(reference, index, context.ReplacementRange))